(no subject)

May 15, 2006 15:09

#include

int  life( )
{
      / / Birth
      cout  <<  "Hello World!"  <<  endl;
      int  myAge  =  15
      cout  << "Why am I here?"  <<  endl;
      cin  >>  noanswer;
       /* You can't see me, I'm the meaning of life! */
      cout  <<  ".............. :("  <<  endl;
      cout  <<  "Goodbye World."  <<  endl;
      / / Death
      return 0;
  }
      
Previous post Next post
Up