diff options
| author | LLLL Colonq <llll@colonq> | 2026-07-09 23:51:55 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-07-09 23:51:55 -0400 |
| commit | 2bdcaf319b1d74ffbaccf08a58336f804761beab (patch) | |
| tree | c21de6df74ec79b5574ad2b89fcc275d10847802 /pit/test/thebug2.lisp | |
Refactor into monorepo
Diffstat (limited to 'pit/test/thebug2.lisp')
| -rw-r--r-- | pit/test/thebug2.lisp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pit/test/thebug2.lisp b/pit/test/thebug2.lisp new file mode 100644 index 0000000..2376ff8 --- /dev/null +++ b/pit/test/thebug2.lisp @@ -0,0 +1,13 @@ + +(setq! z 40) +(setq! f + (lambda (x) + (lambda (y) + (lambda (w) + (+ + (funcall (lambda (z) (+ x y z)) 3) + w + z))))) +(let ((z 20)) + (print! (funcall (funcall (funcall f 1) 2) 3))) + |
