1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-29 05:36:55 +02:00
Files

12 lines
124 B
Go
Raw Permalink Normal View History

import "fmt"
func main() {
names := []string{
"Alex",
"Max",
"German",
}
fmt.Printf("My name is %v", names[3])
}