summaryrefslogtreecommitdiff
path: root/src/cli/runtime/ArraySeq.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/runtime/ArraySeq.cs')
-rw-r--r--src/cli/runtime/ArraySeq.cs4
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;