technoblogy / ulisp

A version of the Lisp programming language for ATmega-based Arduino boards.

Home Page:http://www.ulisp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

closures print weird in assoc list

dragoncoder047 opened this issue · comments

> (let ((b 24)) (cons 'x (lambda (a) (print b) 42)))
(x closure ((b . 24)) (a) (print b) 42)

Ideally, should be

(x . <closure>)

but I'm not sure how to fix this.

I feel that there are more important things to fix in uLisp. Perhaps I should make a list of them some time!