Created
March 4, 2022 15:13
-
-
Save xvbnm48/2eabb524bb00d1dc9e3efcdb06a5b7c9 to your computer and use it in GitHub Desktop.
array golang
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 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