Name: Anonymous 2012-05-31 19:43
Post your favorite Hello World implementation, or some wacky Hello World implementation of your own.
In Ruby:
In Ruby:
helloWorldPrinter = Object.new
class << helloWorldPrinter
def print
Kernel.print "Hello World!\n"
end
end
helloWorldPrinter.print