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
This is a property of Julia: macros are expanded in an expression before evaluating it.
In this case, begin groups everything into a single expression, and the macro is not defined before evaluating it. The same happens in the REPL, or any other Julia environment.
The issue is pretty straightforward, Pluto.jl doesn't see any exported macro from any package within the same cell where
using SomePackage
is called.If you prefix macro with a package name it also doesn't work:
The text was updated successfully, but these errors were encountered: