The Programming of Life

Written by: reyshizz

I wrote the program (pseudo code) as a joke a couple of years ago. Enjoy (if you can understand it).

God () {
  Create new life;
  live (life);
}

live (life) {
  if ( life.gender == male ) {

      attract_female( life );

  }else if (life.gender == female) {

      attract_male( life );

  }

  if ( life.hasmate ) && ( life.able ) {

      make_babies( life );

  }else if ( life.age > life.expectancy ) {

      kill( life );

  }else {

      live (life)

  }

}



Posted on October 6th, 2009
Topics: Personal

Leave a Comment or Question


«
»