You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, defn argument destructuring of this sort worked: (defn foo [[a b]] (print a b))
In 0.16, one gets:
HySyntaxError: parse error for special form 'fn*': should have reached end of form: HyList([
HySymbol(u'a'),
HySymbol(u'b')]): HyList([
HyList([
HySymbol(u'a'),
HySymbol(u'b')])])
This is with hy 0.16.0 using CPython(default) 2.7.7 on Linux
The text was updated successfully, but these errors were encountered:
Previously, defn argument destructuring of this sort worked:
(defn foo [[a b]] (print a b))
In 0.16, one gets:
This is with
hy 0.16.0 using CPython(default) 2.7.7 on Linux
The text was updated successfully, but these errors were encountered: