Last active
August 29, 2015 14:21
-
-
Save emilysnothere/73ac0e5646c59c3809be to your computer and use it in GitHub Desktop.
The Worst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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