Samples
Samples
slices
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/slices
-
slices.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
slices.go
// Ignored build directive: +build OMIT
package main
import "fmt"
func main() {
primes := [6]int{2, 3, 5, 7, 11, 13}
var s []int = primes[1:4]
fmt.Println(s)
}
