(8/10)
Pro Access Required
This is a premium lesson. Upgrade to Pro to unlock this interactive exercise and continue your learning journey.
💻Go
Select
0 WPM
0% Accuracy
0:00 Time elapsed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main↵
import "fmt"↵
func main() {↵
c1 := make(chan string)↵
c2 := make(chan string)↵
go func() { c1 <- "one" }()↵
go func() { c2 <- "two" }()↵
select {↵
case msg1 := <-c1:↵
fmt.Println(msg1)↵
case msg2 := <-c2:↵
fmt.Println(msg2)↵
}↵
}
0 / 278
Press This!
👇
`~
1!
2@
3#
4$
5%
6^
7&
8*
9(
0)
-_
=+
⌫
⇥
Q
W
E
R
T
Y
U
I
O
[{
]}
\|
⇪
A
S
D
F
G
H
J
K
L
;:
'"
↵
⇧
Z
X
C
V
B
N
M
,<
.>
/?
⇧
Thumb
Index
Middle
Ring
Pinky