How do I fix this error in with deps.edn file?

196 Views Asked by At

I have created a project called tutorial with a deps.edn file in it. I also have a core.cljs file in tutorial/src/appy.

When I run the command clj -m cljs.main --compile appy.core --repl following a tutorial I get an error.

Error building classpath. Error reading edn. Map literal must contain an even number of forms (C:\Users\...\tutorial\deps.edn)

The content of the deps.edn file is

{:deps {org.clojure/clojurescript {:mvn/version "1.10.773"}}
:paths ["src"]}

I understand the error but not why it is generated.

0

There are 0 best solutions below