Samples
Samples
slices-pointers
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/slices-pointers
-
slices-pointers.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
slices-pointers.go
// Ignored build directive: +build OMIT
package main
import "fmt"
func main() {
names := [4]string{
"John",
"Paul",
"George",
"Ringo",
}
fmt.Println(names)
a := names[0:2]
b := names[1:3]
fmt.Println(a, b)
b[0] = "XXX"
fmt.Println(a, b)
fmt.Println(names)
}
