Skip to content

Instantly share code, notes, and snippets.

@AnObfuscator
Created May 27, 2015 16:16
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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