summaryrefslogtreecommitdiff
path: root/src/cli/runtime
diff options
context:
space:
mode:
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);