This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-09-10
Channels
- # beginners (191)
- # boot (3)
- # cljs-dev (2)
- # clojure (46)
- # clojure-austin (1)
- # clojure-spec (4)
- # clojure-uk (32)
- # clojurescript (10)
- # clojurewerkz (3)
- # cursive (14)
- # datomic (88)
- # defnpodcast (1)
- # editors (2)
- # fulcro (2)
- # hoplon (3)
- # jobs (4)
- # jobs-discuss (1)
- # luminus (5)
- # lumo (6)
- # off-topic (13)
- # random (1)
- # re-frame (50)
- # reagent (245)
- # remote-jobs (1)
- # spacemacs (3)
- # specter (16)
- # uncomplicate (4)
@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.