blob: fe981e7e6a34c2ce59c21f1e60281fbab90a8f08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Created on 28-Sep-2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
/**
* @author websterm
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class HelloWorld {
public static void println () {
System.out.println("Hello World!");
}
public static void main(String[] args) {
println();
// System.getProperty("foo");
}
}
|