Skip to content

Instantly share code, notes, and snippets.

@karan-ta
Last active September 19, 2020 06:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karan-ta/4a4fb041033b98d294be5da93d268e7b to your computer and use it in GitHub Desktop.
Save karan-ta/4a4fb041033b98d294be5da93d268e7b to your computer and use it in GitHub Desktop.
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