about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/UseThree.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/1/UseThree.java')
-rw-r--r--usth/ICT2.2/labwork/1/UseThree.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/1/UseThree.java b/usth/ICT2.2/labwork/1/UseThree.java
new file mode 100644
index 0000000..9b5693b
--- /dev/null
+++ b/usth/ICT2.2/labwork/1/UseThree.java
@@ -0,0 +1,8 @@
+class UseThree
+{
+  public static void main(String... args)
+  {
+    System.out.printf("Hi %s, %s and %s.  How are you?\n",
+                      args[2], args[1], args[0]);
+  }
+}