summaryrefslogtreecommitdiff
path: root/tutorial/examples/verbose/Hello.oj
blob: 0267289da8e8f82767c790203b52724f5f974abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package examples.verbose;


public class Hello instantiates VerboseClass
{
    public static void main(String[] argv) {
	hello();
    }

    static void hello() {
	System.out.println("Hello, world.");
    }
}