-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathswitch.go
More file actions
55 lines (52 loc) · 829 Bytes
/
switch.go
File metadata and controls
55 lines (52 loc) · 829 Bytes
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
package main
import "fmt"
func main() {
// var a uint8
// a = 36
/*
switch a {
case 1:
fmt.Println("Lunes")
case 2:
fmt.Println("Martes")
case 3:
fmt.Println("Miercoles")
case 4:
fmt.Println("Jueves")
case 5:
fmt.Println("Viernes")
case 6:
fmt.Println("Sábado")
case 7:
fmt.Println("Domingo")
default:
fmt.Println("No es un día de de la semana")
}
*/
/*
switch a {
case 1:
fallthrough
case 2:
fallthrough
case 3:
fallthrough
case 4:
fallthrough
case 5:
fmt.Println("Estás entre semana")
case 6:
fallthrough
case 7:
fmt.Println("Estás en fin de semana :)")
default:
fmt.Println("No es un día válido")
}
*/
switch a := 36; a {
case 5:
fmt.Println("Estás entre semana")
default:
fmt.Println("No es un día válido")
}
}