Skip to content

Instantly share code, notes, and snippets.

@dawehner
Created August 22, 2009 10:06
Show Gist options
  • Save dawehner/172718 to your computer and use it in GitHub Desktop.
Save dawehner/172718 to your computer and use it in GitHub Desktop.
<?php
// $Id$
/**
* @file
* foo
*/
function test() {
$counter = 0;
while ($counter < 1000000000) {
$counter ++;
print rand(0, 1);
}
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment