← Back to archive

Stdle #36 · slices · 2026-07-12

What does this Go snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

package main
import "fmt"
func main() {
s := []int{1, 2, 3, 4}
t := s[1:2:3]
t = append(t, 8)
fmt.Println(s, t)
}
Slices
4 attempts left

Answer & explanation