Currently, core.clj is the defactor entry-point for Wolframite. Unfortunately however, exposing load-package! here is not straightforward because of circular dependencies.
If we want load-package! to be exposed in core then we either
copy across the whole namespace
find a way to use 'eval' without referring to core
create a separate API namespace that exposes the key Wolframite functions
Currently, core.clj is the defactor entry-point for Wolframite. Unfortunately however, exposing load-package! here is not straightforward because of circular dependencies.
If we want load-package! to be exposed in core then we either
What do we think @holyjak ?