Skip to content

Instantly share code, notes, and snippets.

@AnObfuscator
Created May 27, 2015 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnObfuscator/0ba413eb04805b37704c to your computer and use it in GitHub Desktop.
Save AnObfuscator/0ba413eb04805b37704c to your computer and use it in GitHub Desktop.
Hello World
def print_hello_world():
print "Hello world!"
print_hello_world()
public class HelloWorld
{
public static void printHelloWorld()
{
System.out.println("Hello World!");
}
public static void main(String[] args)
{
printHelloWorld();
}
}
function printHelloWorld()
{
document.write("Hello world!");
}
printHelloWorld();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment