package main import ( "fmt" ) func main() { a := []int{1, 2, 3, 4, 5, 6, 7} sublist := a[0:5] fmt.Println(sublist) }