mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
12 lines
124 B
Go
12 lines
124 B
Go
import "fmt"
|
|
|
|
func main() {
|
|
names := []string{
|
|
"Alex",
|
|
"Max",
|
|
"German",
|
|
}
|
|
|
|
fmt.Printf("My name is %v", names[3])
|
|
}
|