User Tools

Site Tools


wiki_playground

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
wiki_playground [2012/11/30 13:12]
prokop
wiki_playground [2012/11/30 13:14]
prokop
Line 58: Line 58:
 </​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>​
 +
 +
 +<file php myexample.php>​
 +php echo "hello world!";​
 +</​file>​
wiki_playground.txt ยท Last modified: 2012/11/30 13:15 (external edit)