Skip to content

Instantly share code, notes, and snippets.

View Cyndrome's full-sized avatar

Mashrafi Mohammad Cyndrome

  • @DeveOfE
  • Dhaka, Bangladesh
View GitHub Profile
@Cyndrome
Cyndrome / gist:60b13228feb766508286
Created November 4, 2015 04:55
Rock Paper Scissors game
you=choose("Make your choice","Rock","Paper","Scissors");
comp=random(3);
if(comp==1){show("Rock");}
else if(comp==2){show("paper");}
else if(comp==3){show("Scissors");}
if(comp==1){
if (you==1){show("Draw");}
else if(you==2){show("You win!");}
else if(you==3){show("Computer wins!");}
} else if(comp==2){