the months
months := [...]string{1: "January", 2:"February", 3: "March", 4:"April", 12:"December"} | |
for _, s := range months { | |
fmt.Printf("The month: %s\n", s) | |
} | |
var runes []rune | |
for _, r := range "Language: 走" { | |
runes = append(runes, r) | |
} | |
fmt.Printf("%q \n", runes) | |
var x, y []int | |
for i := 0; i < 10; i++ { | |
y = appendInt(x, i) | |
fmt.Printf("%d cap=%d\t%v\n", i, cap(y), y) | |
x = y | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment