slice slices
package main import "fmt" func main() { var mySlice = []int{0, 0, 1, 244} fmt.Println(mySlice[0:2]) } //[0 0]