diff options
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;
|