Thread: Yoshi Heads
View Single Post
  #34  
Old 08-16-2001, 12:30 AM
Skatche Skatche is offline
Registered User
Join Date: Aug 2001
Location: Gehennom
Posts: 353
Skatche is on a distinguished road
Send a message via AIM to Skatche
Quote:
Originally posted by Stefan
void main() cout << "LOL\n";

and now, the unoptimized version:

NPC Code:

#define integer int
#define character_of_size_1_byte char
integer main() {
integer retvalue = 0;
character_of_size_1_byte LOL[]= {'L', 'O', 'L', 0 }
for( i = 0; i < 4; i++ )
{
printf("%c", LOL[i]);
LOL[i] = 0; /* there is no point to this comment */
}
return (retvalue);
}



__________________
Skatche, head priest of the Cult of Duckduck.
Praise Duckduck!
Reply With Quote