summaryrefslogtreecommitdiff
path: root/tutorial/examples/verbose/Hello.oj
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/examples/verbose/Hello.oj')
-rw-r--r--tutorial/examples/verbose/Hello.oj13
1 files changed, 13 insertions, 0 deletions
diff --git a/tutorial/examples/verbose/Hello.oj b/tutorial/examples/verbose/Hello.oj
new file mode 100644
index 0000000..0267289
--- /dev/null
+++ b/tutorial/examples/verbose/Hello.oj
@@ -0,0 +1,13 @@
+package examples.verbose;
+
+
+public class Hello instantiates VerboseClass
+{
+ public static void main(String[] argv) {
+ hello();
+ }
+
+ static void hello() {
+ System.out.println("Hello, world.");
+ }
+}