From cac651cd88f8da1e5957b0cc13fa25d79e1887fc Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Tue, 23 Aug 2016 20:58:50 +0200 Subject: Many things - two-letter AST union members - AST_QUOTED - AST_LAMBDA - an interpreter that works - function registering in the interpreter - some builtins --- code.lysp | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'code.lysp') diff --git a/code.lysp b/code.lysp index 47a0268..f509404 100644 --- a/code.lysp +++ b/code.lysp @@ -1,7 +1,11 @@ -(print - (+ 1 (% 10 3)) - () - '( #| dit is commentaar|# ()) - (('())) - 'kaas ;meer commentaar - "kazen enzo") +(do + (print 42) + (print + (+ 1 (% 10 3)) + () + '( #| dit is commentaar|# ()) + '(('())) + '''"hoi" + '''''(dit is quoted) + 'kaas ;meer commentaar + "kazen enzo")) \ No newline at end of file -- cgit v1.2.3-54-g00ecf