mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
18 lines
218 B
Go
18 lines
218 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
name := "Stanislav"
|
|
switch name {
|
|
case "Stanislav":
|
|
fmt.Println("Admin")
|
|
fallthrough
|
|
case "Maxim", "Alex", "Bill":
|
|
fmt.Println("Employee")
|
|
}
|
|
}
|
|
|
|
// Admin
|
|
// Employee
|