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
// @TODO its time for a RT (runtime), which environment seems to be becoming
let _ = Repl::new(Rc::clone(&environment)).try_eval_file("./src/clojure/core.clj");
// TODO: should read into namespace if (ns ..) is given in source file
let _ = Repl::new(Rc::clone(&environment)).try_eval_file("./src/clojure/string.clj");
My (Bevy-based) app does not have a src/clojure/core.clj nor a src/clojure/string.clj so the resulting load errors (observed by printing the return value of the try_eval_file calls) are silently ignored/swallowed/eaten/etc (due to the let _ = ...s).