summaryrefslogtreecommitdiff
path: root/tutorial/examples/freeargs/Test.oj
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/examples/freeargs/Test.oj')
-rw-r--r--tutorial/examples/freeargs/Test.oj28
1 files changed, 28 insertions, 0 deletions
diff --git a/tutorial/examples/freeargs/Test.oj b/tutorial/examples/freeargs/Test.oj
new file mode 100644
index 0000000..86a6cc9
--- /dev/null
+++ b/tutorial/examples/freeargs/Test.oj
@@ -0,0 +1,28 @@
+/*
+ * Test.oj
+ *
+ * Apr 13, 1999 Michiaki Tatsubori
+ */
+package examples.freeargs;
+
+
+import java.lang.Object;
+
+
+/**
+ * Just a test.
+ */
+public class Test
+{
+
+ /**
+ * This is main method.
+ */
+ public static void main( String[] args ) {
+ Collection c = new Collection();
+ c.set( new Integer( args.length ), args[0], args[1] );
+ c.add( new Integer( args.length ), args[0], args[1] );
+ System.out.println( c.size() );
+ }
+
+}