Skip to content

Instantly share code, notes, and snippets.

@xvbnm48
Created March 4, 2022 15:28
Show Gist options
  • Save xvbnm48/c16c79ad5bbe3e3ab470d16ca0629241 to your computer and use it in GitHub Desktop.
Save xvbnm48/c16c79ad5bbe3e3ab470d16ca0629241 to your computer and use it in GitHub Desktop.
slice golang
package main
import "fmt"
func main() {
var vtuber = []string{"korone", "pekora", "moona"}
// tanpa memberikan berapa jumlah array
var newVtuber = vtuber[1:3]
fmt.Println(newVtuber)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment