Skip to content

Instantly share code, notes, and snippets.

@xvbnm48
Created March 4, 2022 15:13
Show Gist options
  • Save xvbnm48/2eabb524bb00d1dc9e3efcdb06a5b7c9 to your computer and use it in GitHub Desktop.
Save xvbnm48/2eabb524bb00d1dc9e3efcdb06a5b7c9 to your computer and use it in GitHub Desktop.
array golang
package main
import "fmt"
func main(){
var nama_idol [4]string
nama_idol[0] = "sakura miyawaki"
nama_idol[1] = "aruno nakanishi"
nama_idol[2] = "sakura endo"
nama_idol[3] = "Itou Miku"
fmt.Println(nama_idol)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment