Skip to content

Instantly share code, notes, and snippets.

@tcarrio
Last active October 30, 2015 18:55
Show Gist options
  • Save tcarrio/0637da076e2b29c756ac to your computer and use it in GitHub Desktop.
Save tcarrio/0637da076e2b29c756ac to your computer and use it in GitHub Desktop.
Showing bebee the ridiculous difference between Java and Pythons Hello World
// Java Hello World
public class HelloWorldExample
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
## Python Hello World
print("Hello World!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment