Arc Forumnew | comments | leaders | submitlogin
2 points by waterhouse 2877 days ago | link | parent

The corresponding macro in Common Lisp has an 18-character name.

  ; SBCL
  * (destructuring-bind (x y) '(1 2) (+ x y))
  3
  ; Arc
  arc> (let (x y) '(1 2) (+ x y))
  3