-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitch.go
60 lines (49 loc) · 820 Bytes
/
switch.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
func main() {
var motion string
// Code that sets motion...
// Simple cases
switch motion {
case "walk":
// Do something
case "run":
// Do something else
case "stop":
// Do something different
default:
// Do nothing
}
var velocity int
// Code that sets velocity...
// comparison cases
switch {
case velocity == 0 || velocity == 1:
//...
case velocity >= 10:
//...
case f(velocity) >= f(100):
//...
}
// The fallthrough directive
switch {
case velocity == 0 || velocity == 1:
//...
case velocity >= 10:
//...
fallthrough
case f(velocity) >= f(100):
//...
}
// Multiple case expressions
switch motion {
case "walk", "run":
// Do something
case "stop":
// Do something different
default:
// Do nothing
}
}
func f(v int) int {
return 2 * v
}