Last active
September 19, 2020 06:38
-
-
Save karanahuja-android/4a4fb041033b98d294be5da93d268e7b to your computer and use it in GitHub Desktop.
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
main () | |
{ | |
var computer = 2; | |
var player = 3; | |
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