How to print "Hello, world!" (in every possible way)
- by Attila Oláh
Here's what I', trying to do:
1 language: (Python < 3):
print "Hello, world!"
2 languages: (Python < 3 & Windows Shell, aka .bat file):
rem="""
echo "Hello, world!"
exit
"""
print "Hello, world!"
Next step could be something like bash. Since the above one raises an exception, I tried to make it not raise exceptions, like this:
…