Skip to content

Instantly share code, notes, and snippets.

@bitsmuggler
Created February 29, 2016 14:29
Show Gist options
  • Save bitsmuggler/903a1fcecc1b767a019c to your computer and use it in GitHub Desktop.
Save bitsmuggler/903a1fcecc1b767a019c to your computer and use it in GitHub Desktop.
Run Java from console
/**
* Hello World Klasse.
*/
public class HelloWorld {
/**
* Eintrittspunkt von deiner Anwendung.
* @param args Argument, die Du deiner Anwendung übergeben kannst.
*/
public static void main(String [] args) {
//Etwas in der Konsole ausgeben.
System.out.println("Yeah - I'm running! :-)");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment