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

Wrong destructuring Macro Lambda List

vlad-km opened this issue · comments

commented
(progn
    (defmacro %m15 (foo &rest (bar . baz))
      `(list ',foo ',bar ',baz))
    (eval '(%m15 x y z)))

=> ERROR: Variable BAZ is unbound.