











and the list goes on...












and the list goes on...
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
} #include
main()
{
cout << "Hello World!";
return 0;
}
Common sense: When you want to print a string, just print it.
>>> print "Hello, world."#! /usr/bin/env python
print "Hello, world."$ python hello.pyif expr1:
do this
elif expr2:
do that
...
...
...
else:
do whatever
if x:
pass
if x == True:
pass