diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-01 20:28:56 +0100 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-01 20:28:56 +0100 |
| commit | 92b27832dbbe786c857e5fb461e218d370c14058 (patch) | |
| tree | 7f91bfb3b00591aeb4fb000675a104292c16e7bb /test | |
| parent | 79053ad97a0149615367da62db633ee266ca5f03 (diff) | |
removing strange code
I have no idea how this got in. Will investigate at another time.
Diffstat (limited to 'test')
| -rw-r--r-- | test/main.lali | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/test/main.lali b/test/main.lali index 25a23cf..5ad4b55 100644 --- a/test/main.lali +++ b/test/main.lali @@ -96,30 +96,3 @@ (newline) (princ '(All with success.)) (newline))) - -(defmacro clean (x) (newline) (princ '(** macro clean:)) (newline) (print x) (newline) (print x) (newline)) -(defmacro mac (x) (newline) (princ '(** macro:)) (newline) (print x) (newline) (print (eval x)) (newline)) -(defmacro macr (x) (newline) (princ '(** macro reverse:)) (newline) (print (eval x)) (newline) (print x) (newline)) -(defmacro double (x) (newline) (princ '(** double:)) (newline) (print (eval (eval x))) (newline)) -(defun fun (x) (newline) (princ '(** function:)) (newline) (print x) (newline) (print (eval x)) (newline)) -(defun fun1 (x) (newline) (princ '(** function reverse:)) (newline) (print (eval x)) (newline) (print x) (newline)) - -(newline) -(princ '(TEST (and t t f))) -(newline) -(princ '(- unquoted)) -(newline) -(clean (and t t f)) -(mac (and t t f)) -(macr (and t t f)) -(double (and t t f)) -(fun (and t t f)) -(fun1 (and t t f)) -(princ '(- quoted)) -(newline) -(clean '(and t t f)) -(mac '(and t t f)) -(macr '(and t t f)) -(double '(and t t f)) -(fun '(and t t f)) -(fun1 '(and t t f)) |
