Skip to content

Instantly share code, notes, and snippets.

@ConnorFM
Created March 12, 2019 10:26
Show Gist options
  • Save ConnorFM/cab58d7e52bf57723b7fd85a28c7f017 to your computer and use it in GitHub Desktop.
Save ConnorFM/cab58d7e52bf57723b7fd85a28c7f017 to your computer and use it in GitHub Desktop.
<?php
$weapons = ['fists', 'whip', 'gun'];
$opponentWeapon = $weapons[rand(0,2)];
switch ($opponentWeapon) {
case 'fists':
$indyWeapon = 'gun';
break;
case 'whip':
$indyWeapon = 'fists';
break;
default:
$indyWeapon = 'whip';
break;
}
echo "When the oppponent uses " . $opponentWeapon . ", Indy uses " . $indyWeapon . " and wins everytime !";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment