about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/4/HowMany.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/4/HowMany.java')
-rw-r--r--usth/ICT2.2/labwork/4/HowMany.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/4/HowMany.java b/usth/ICT2.2/labwork/4/HowMany.java
new file mode 100644
index 0000000..16c07bd
--- /dev/null
+++ b/usth/ICT2.2/labwork/4/HowMany.java
@@ -0,0 +1,7 @@
+class HowMany
+{
+  public static void main(String... args)
+  {
+    System.out.println(args.length);
+  }
+}