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