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