Sep 282011
Print to standard output in different scripting languages
Answer:
To print a string of "Hello World" to the standard output in different scripting languages
1. Perl
print "Hello, World!";
2. Python
print('Hello, World!')
3. PHP
echo "Hello, World!";
4. Ruby
puts "Hello, World!"