Skip to content

Instantly share code, notes, and snippets.

@dmongeau
Created March 23, 2011 02:15
Show Gist options
  • Save dmongeau/882493 to your computer and use it in GitHub Desktop.
Save dmongeau/882493 to your computer and use it in GitHub Desktop.
<?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