@anmonteiro just got done watching your talk at clojurtre, really great job. Thanks for putting that together
thanks! I appreciate it
WOW! That did the trick! ¡Muchas gracias! 🙂
Sorry, I'm back. If I first start a repl with "lumo -c cat cp.txt
" and then evaluate (require 'v8) and (v8/setFlagsFromString "--nouse_strict"), I can do the (require 'tubax.core) with no errors. However, if I put those three forms into a file (main.cljs) and run "lumo -c cat cp.txt
main.cljs", I get the same errors as before. Ideas?
@gschiltz hrm, weird. workaround is to run lumo like this:
lumo -e "(require 'v8) (v8/setFlagsFromString \"--nouse_strict\")" main.cljs
Thanks for the quick response yet again. That did the trick.