Snake eyes
You must write code that, when two dice have been rolled, see if they have got snake eyes or not.
Snake eyes are when the player rolls two ones.
The code below will get you started
dice1 = Math.GetRandomNumber(6)
dice2 = Math.GetRandomNumber(6)
TextWindow.WriteLine("You rolled " + dice1 + " and a " + dice2)

You need to log in or create an account to submit code!











