Odd thought
Oct. 29th, 2004 01:37 pm
There’s a tradition in introductions to new computer languages (which dates back to the original book on The C Programming Language by Kernighan and Ritchie, if not before) of writing a program that just prints Hello, world! Is anyone else in the habit of making theirs print Goodbye, cruel world! instead?

no subject
Date: 2004-10-29 02:57 pm (UTC)int main() {
printf("Goodbye, cruel world!\n");
return main();
}
no subject
Date: 2004-10-30 05:43 am (UTC)