Content deleted Content added
←Created page with 'My User Page' |
No edit summary |
||
Line 1:
My User Page
Syntax reminder:
The traditional [["Hello, world!" program|Hello world program]] can be written in Java as:<ref>{{cite web |url=https://docs.oracle.com/javase/tutorial/getStarted/application/index.html |title=Lesson: A Closer Look at the Hello World Application |work=The Java™ Tutorials > Getting Started |publisher=[[Oracle Corporation]] |accessdate=2011-04-14 |archive-url=https://web.archive.org/web/20110317072804/http://download.oracle.com/javase/tutorial/getStarted/application/index.html |archive-date=March 17, 2011 |url-status=live |df=mdy-all }}</ref>
<!--
NOTE:
PLEASE *do not* change the example code; it's written in Sun's recommended style. That includes the brace style.
-->
<source lang="java">
public class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Prints the string to the console.
}
}
</source>
|