jscl-project / jscl

A Lisp-to-JavaScript compiler bootstrapped from Common Lisp

Home Page:https://jscl-project.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

destructuring-bind bug

hemml opened this issue · comments

CL-USER> (destructuring-bind ((a . b) . (c . d)) '((a . b) . (c . d)) (list a b c d))
ERROR: Variable B is unbound.

Seems a dot notation is not working in destructuring-bind

CL-USER> (destructuring-bind (a . b) '(a . b) (list a b))
ERROR: Variable B is unbound.