Welcome! Please see the About page for a little more info on how this works.

0 votes
in ClojureScript by

At the REPL, the following should not happen I think, cause it feels unidiomatic:

`
(require "something") ;; there is no quote before the apices

---- Could not Analyze line:1 column:1 ----

Library name must be specified as a symbol in :require / :require-macros; offending spec: ["something"] at line 1

1 (require '"something")

 ^--- 

---- Analysis Error ----
`

Minor, solvable with:

(require '"something") ;; quote before the apices

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJS-2329 (reported by arichiardi)
...