diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-08-21 19:58:57 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-08-21 19:58:57 +0000 |
commit | db5107d5d868cdd95e5af40cc9ab02f0261df7f4 (patch) | |
tree | 2b211e8ac998b8cacb454bf68519515d7afd74fa /src/cli/runtime/ArraySeq.cs | |
parent | 73b3f73d469b4a37dd3827e4fff45efce7459d24 (diff) |
changed variable arity handling
Diffstat (limited to 'src/cli/runtime/ArraySeq.cs')
-rw-r--r-- | src/cli/runtime/ArraySeq.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cli/runtime/ArraySeq.cs b/src/cli/runtime/ArraySeq.cs index 4503792e..3fb91560 100644 --- a/src/cli/runtime/ArraySeq.cs +++ b/src/cli/runtime/ArraySeq.cs @@ -20,6 +20,10 @@ readonly Object[] array; readonly int i;
//ISeq _rest;
+static public ArraySeq create(){
+ return null;
+}
+
static public ArraySeq create(params Object[] array){
if(array.Length == 0)
return null;
|