summaryrefslogtreecommitdiff
path: root/src/cli/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/runtime')
-rw-r--r--src/cli/runtime/RT.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs
index 40626d62..75659413 100644
--- a/src/cli/runtime/RT.cs
+++ b/src/cli/runtime/RT.cs
@@ -170,7 +170,11 @@ static public ISeq rest(Object x)
return null;
return seq(x).rest();
}
-
+
+static public ISeq rrest(Object x) {
+ return rest(rest(x));
+}
+
static public Object peek(Object x)
{
if (x == null)