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