Created
March 23, 2011 02:15
-
-
Save dmongeau/882493 to your computer and use it in GitHub Desktop.
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 | |
set_time_limit(0); | |
/* | |
* Okay, the project is LIFE.php so we want to skip all the boring pre-life part. | |
* Thanks to php, we can just do a 5 billion years sleep. | |
* | |
*/ | |
define('YEAR',3600*24*365); | |
sleep(5000000000*YEAR); | |
/* | |
* | |
* Life Class | |
* | |
* | |
*/ | |
class Life { | |
public function __construct() { | |
} | |
} | |
/* | |
* | |
* Atom Class | |
* | |
* | |
*/ | |
class Atom { | |
public function __construct() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment