Samples
Samples
slice-bounds
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/slice-bounds
-
slice-bounds.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
slice-bounds.go
// Ignored build directive: +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)
}
