4 points
*
C:
#include <stdio.h>
int main() {
printf("Hello World!");
return(0);
}
EDIT: POSIX-compatible shell:
echo "Hello World!"
Python2 is only one character longer:
print “Hello world!”
And you get proper data types too.
1 point
4 points
4 points