Created
March 4, 2022 15:23
-
-
Save xvbnm48/07f143cf3185bf93fc78c003b16c7a41 to your computer and use it in GitHub Desktop.
simple array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func main(){ | |
var idol_grub = [4]string{"JKT48", "HKT48", "NOGIZAKA46", "AKB48"} | |
fmt.Println(idol_grub) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment