summaryrefslogtreecommitdiff
path: root/src/cli/runtime/RT.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-10-03 00:59:14 +0000
committerRich Hickey <richhickey@gmail.com>2006-10-03 00:59:14 +0000
commit97230011c3ae6a33d1aac2be5ce78a031b46f189 (patch)
treec9ea2dd2bd70814367dc3f54eb9eca13093f1943 /src/cli/runtime/RT.cs
parent3302b103d19483ab301c98f381f03eb3a2ed0107 (diff)
interim checkin
Diffstat (limited to 'src/cli/runtime/RT.cs')
-rw-r--r--src/cli/runtime/RT.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs
index 8f7141d9..431185d6 100644
--- a/src/cli/runtime/RT.cs
+++ b/src/cli/runtime/RT.cs
@@ -149,6 +149,10 @@ static public Object third(Object x)
{
return first(rest(rest(x)));
}
+
+static public Object fourth(Object x) {
+ return first(rest(rest(rest(x))));
+}
static public ISeq rest(Object x)
{