Tuesday, February 10, 2004
Learn how to say “Hello, World”, in hundreds of languages! Programming languages, that is.
Here’s how I’d do it in C++, which I’m learning right now:
#include <iostream.h>
int main() {
cout << "Hello, World! << endl;
return 0;
}
Jan 08 2009 @ 07:09 PM
Comments & Trackbacks
Post a comment.
The trackback URL for this entry is:
1. Jannah
said:
on Feb 11 2004 @ 01:07 AM
LOL The famous “Hello World!” again. That site has lots of interesting examples. I wonder why they put the Java one in an infinite for loop though. :X
2. Yvonne
said:
on Feb 12 2004 @ 06:46 AM
Yeah, I noticed that, it’s weird. They did that for several other languages on there, too.