Skip to content

Instantly share code, notes, and snippets.

@eddimas
Created May 9, 2016 05:58
Show Gist options
  • Save eddimas/966c82d551f8a7bfc02c1143dc4f95fc to your computer and use it in GitHub Desktop.
Save eddimas/966c82d551f8a7bfc02c1143dc4f95fc to your computer and use it in GitHub Desktop.
/* The simplest code in java
// to execute it just save this code and compile
// $ javac helloWorld.java
// $ java HelloWorld
*/
public class helloWorld {
public static void main(String[] args){
System.out.printf("Hello World!!\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment