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
In JVM/CLJS (others) clojure, we can use N #_ in sequence to ignore the next N forms, while for basilisp I have an error (at least when using it from a let as the error seems to be related to the macroexpansion).
;; This explodes.
(let [#_ #_ _ (bpy.ops.ed/undo_push)
a 3])
;; This is fine
(let [#_ _ #_ (bpy.ops.ed/undo_push)
a 3])
In JVM/CLJS (others) clojure, we can use N
#_
in sequence to ignore the next N forms, while for basilisp I have an error (at least when using it from alet
as the error seems to be related to the macroexpansion).Error
The text was updated successfully, but these errors were encountered: