Created
August 28, 2020 12:02
-
-
Save zontyp/1fd7f91889456ee8d106a87d8227d2df to your computer and use it in GitHub Desktop.
This file contains hidden or 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
main () | |
{ | |
var computer = 10; | |
var player = 10; | |
if (computer > player) | |
{ | |
print ("my number is higher"); | |
} | |
if (computer < player) | |
{ | |
print ("my number is lower"); | |
} | |
if (computer == player) | |
{ | |
print ("you got it !"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment