Skip to content

Instantly share code, notes, and snippets.

@siburu
Created March 18, 2016 15:30
Show Gist options
  • Save siburu/cbd3241e94bd914efb9e to your computer and use it in GitHub Desktop.
Save siburu/cbd3241e94bd914efb9e to your computer and use it in GitHub Desktop.
package main
import "math/rand"
func main() {
n := 0
for n < 4 {
for n = 0; rand.Int()%2 == 0; n++ {
println("ズン")
}
println("ドコ")
}
println("キ・ヨ・シ!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment