1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_4/4.1/1.go
2025-06-04 19:37:39 +03:00

12 lines
124 B
Go

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