summaryrefslogtreecommitdiff
path: root/MLKRoot.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-03 17:54:38 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-03 17:54:38 +0200
commitd2177ce363fd5b0d8d3faf6d25f2944e43236e11 (patch)
tree4867627e708314bf1120a9b4bc809c67e4a01120 /MLKRoot.m
parent88ce45f2cd65cf619ead6a07e69d7c8be55cebec (diff)
Implement LIST.
Diffstat (limited to 'MLKRoot.m')
-rw-r--r--MLKRoot.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/MLKRoot.m b/MLKRoot.m
index 5c8b4b8..c30a043 100644
--- a/MLKRoot.m
+++ b/MLKRoot.m
@@ -220,4 +220,9 @@ static id truify (BOOL value)
{
RETURN_VALUE ([[args objectAtIndex:0] divideBy:[args objectAtIndex:1]]);
}
+
++(NSArray *) list:(NSArray *)args
+{
+ RETURN_VALUE ([MLKCons listWithArray:args]);
+}
@end