Skip to content

Instantly share code, notes, and snippets.

@zontyp
Created August 28, 2020 12:02
Show Gist options
  • Save zontyp/1fd7f91889456ee8d106a87d8227d2df to your computer and use it in GitHub Desktop.
Save zontyp/1fd7f91889456ee8d106a87d8227d2df to your computer and use it in GitHub Desktop.
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