go-tour/slice-bounds.go
2020-02-04 21:44:36 -06:00

17 lines
182 B
Go

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