This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| wiki_playground [2012/11/30 13:12] prokop | wiki_playground [2012/11/30 13:15] (current) | ||
|---|---|---|---|
| Line 57: | Line 57: | ||
| This is pretty much the same, but you could use it to show that you quoted a file. | This is pretty much the same, but you could use it to show that you quoted a file. | ||
| </file> | </file> | ||
| + | |||
| + | |||
| + | <code java> | ||
| + | /** | ||
| + | * The HelloWorldApp class implements an application that | ||
| + | * simply displays "Hello World!" to the standard output. | ||
| + | */ | ||
| + | class HelloWorldApp { | ||
| + | public static void main(String[] args) { | ||
| + | System.out.println("Hello World!"); //Display the string. | ||
| + | } | ||
| + | } | ||
| + | </code> | ||
| + | |||