command line test
authorbdemsky <bdemsky>
Wed, 27 Sep 2006 16:38:03 +0000 (16:38 +0000)
committerbdemsky <bdemsky>
Wed, 27 Sep 2006 16:38:03 +0000 (16:38 +0000)
Robust/src/Tests/CommandLineTest.java [new file with mode: 0644]

diff --git a/Robust/src/Tests/CommandLineTest.java b/Robust/src/Tests/CommandLineTest.java
new file mode 100644 (file)
index 0000000..b828b76
--- /dev/null
@@ -0,0 +1,8 @@
+class CommandLineTest {
+    public static void main(String str[]) {
+       for(int i=0;i<str.length;i++) {
+           System.printString(str[i]);
+           System.printString("\n");
+       }
+    }
+}