blob: 7cd3a7a66dd089d3db5d4ec9c61ca6bc93bb28d7 [file] [log] [blame]
//go:build OMIT
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)
}