Inspiration
"Janken" is a very popular game between kids, and for settling fights. The logic behind the game is pretty easy to implement even in a new language. That's why I chose to make this game
What it does
It helps you play "Janken" with the computer, as computer's choice is completely random
How we built it
I have Golang as language for creating this game. I have recently started using Go in LHD: Share. The logic behind the game seemed easy, so it was possible to make it in this language I have used the following packages:
- fmt
- math/rand
- time
Challenges we ran into
Ability to generate completely random computer choices, it required to set the
rand.Seed() every time we used rand.Intn() .

Log in or sign up for Devpost to join the conversation.