The "Hello World!" Thread!

TheFallibleFiend said:
# Perl - with subroutine
# you could just use print "Hello, World!\n"
# but that wouldn't be any fun.
do &outMsg;

sub outMsg {
$output = "Hello, World";
print "$output\n";
}
Nice :)
What's your experience with Python?
I love both languages I guess, but my heart is with python :)
I like programming forums, and finding programmers who share similar tastes.. :p
 
msl (mIRC Scripting Language):

Code:
alias hello { say Hello World! }
 
Back
Top