What is the story with include
in embedded Julia on 0.7+? If, for example, you add
checked_eval_string("include(\"LocalModule.jl\")");
in the embedding example (test/embedding/embedding.c
), the result is
UndefVarError: include not defined
To be able to include something you need to do Base.include(Main, filename)
instead or start out with an eval of include(x) = Base.include(Main, x)
. Is this a feature or a bug? If it’s intentional I think it needs some kind of mention in the documentation.