Apologies! Your web browser lacks required capabilities. Please consider upgrading it or switching to a more modern web browser.
Initializing. Please wait…
<<set $wins to 0>>
<<set $losses to 0>>
<<set $ties to 0>>
[[Rock]]. [[Paper]]. [[Scissors]]. Shoot.<<set $chosen to either("rock", "paper", "scissors")>>
I played <<print $chosen>>.
<<if $chosen is "scissors">>You won! <<set $wins += 1>> [[Play again?|Start2]]<<endif>><<if $chosen is "paper">>You lost. <<set $losses += 1>> [[Try again.|Start2]]<<endif>><<if $chosen is "rock">>We tied. <<set $ties += 1>> [[Once more.|Start2]]<<endif>><<set $chosen to either("rock", "paper", "scissors")>>
I played <<print $chosen>>.
<<if $chosen is "rock">>You won! <<set $wins += 1>> [[Play again?|Start2]]<<endif>><<if $chosen is "scissors">>You lost. <<set $losses += 1>> [[Try again.|Start2]]<<endif>><<if $chosen is "paper">>We tied. <<set $ties += 1>> [[Once more.|Start2]]<<endif>><<set $chosen to either("rock", "paper", "scissors")>>
I played <<print $chosen>>.
<<if $chosen is "paper">>You won! <<set $wins += 1>> [[Play again?|Start2]]<<endif>><<if $chosen is "rock">>You lost. <<set $losses += 1>> [[Try again.|Start2]]<<endif>><<if $chosen is "scissors">>We tied. <<set $ties += 1>> [[Once more.|Start2]]<<endif>>Current wins: <<print $wins>>
Current losses: <<print $losses>>
Current ties: <<print $ties>>
[[Rock]]. [[Paper]]. [[Scissors]]. Shoot.