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).
The text was updated successfully, but these errors were encountered:
ClojureRS/src/environment.rs
Lines 524 to 530 in 9d8f63c
My (Bevy-based) app does not have a
src/clojure/core.clj
nor asrc/clojure/string.clj
so the resulting load errors (observed by printing the return value of thetry_eval_file
calls) are silently ignored/swallowed/eaten/etc (due to thelet _ = ...
s).The text was updated successfully, but these errors were encountered: