Last active
October 30, 2015 18:55
-
-
Save tcarrio/0637da076e2b29c756ac to your computer and use it in GitHub Desktop.
Showing bebee the ridiculous difference between Java and Pythons Hello World
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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