1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-12-04 13:39:53 +02:00
Files
go_basics/part_1/1.10/1.10.2/3.go

16 lines
190 B
Go
Raw Normal View History

package main
import "fmt"
func main() {
name := "Alex"
switch name {
case "Stanislav":
fmt.Println("Admin")
case "Maxim", "Alex", "Bill":
fmt.Println("Employee")
}
}
// Employee