Skip to content

Instantly share code, notes, and snippets.

@emilysnothere
Last active August 29, 2015 14:21
Show Gist options
  • Save emilysnothere/73ac0e5646c59c3809be to your computer and use it in GitHub Desktop.
Save emilysnothere/73ac0e5646c59c3809be to your computer and use it in GitHub Desktop.
The Worst
<?php
function portal($GLaDOS) {
$chell = $GLaDOS;
$wheatley = $GLaDOS + 8;
while ($chell <= $wheatley) {
$caveJohnson = $GLaDOS;
while ($caveJohnson <= $chell) {
echo $chell;
$caveJohnson++;
}
echo "\n";
if ($chell != 'The cake is a lie') {
$chell++;
}
}
}
portal(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment