Last active
August 29, 2015 14:20
-
-
Save underr/b839ee964bf5aa537914 to your computer and use it in GitHub Desktop.
verdade-chan
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" | |
"math/rand" | |
"time" | |
) | |
func main() { | |
palavras := [12]string{ | |
"sim", | |
"não", | |
"mas é claro que sim", | |
"nope.avi", | |
"nein", | |
"yep", | |
"talvez", | |
"wakarimasen lol", | |
"ja", | |
"[no]", | |
"hai", | |
"nai", | |
} | |
rand.Seed(time.Now().UTC().UnixNano()) | |
verdade := rand.Intn(12) | |
fmt.Println(palavras[verdade]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment