summaryrefslogtreecommitdiff
path: root/src/cli/runtime
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-05-04 12:45:53 +0000
committerRich Hickey <richhickey@gmail.com>2006-05-04 12:45:53 +0000
commit6758d50fecc5b042a3d880ca9bf0fe17014aec1a (patch)
tree0f65e839a95a8e341ffed86b7955bfcce5711278 /src/cli/runtime
parent2b24aa4ccdc69cd73878af135999c5487635c1c1 (diff)
added string, number and char literals, RT.ch()
Diffstat (limited to 'src/cli/runtime')
-rw-r--r--src/cli/runtime/RT.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs
index 0f2efee9..11aa7bda 100644
--- a/src/cli/runtime/RT.cs
+++ b/src/cli/runtime/RT.cs
@@ -71,7 +71,12 @@ public class RT
}
}
-
+
+static public Object ch(char c)
+ {
+ return c;
+ }
+
static public Cons cons(Object x, Cons y)
{
return new Cons(x, y);