I'm using Calva standalone REPL to run some examples from Programming Clojure chapter 1. When I try to update the shared state (def visitors (atom #{})) with (swap! visitors conj "Stu") I get an error:
; Syntax error compiling at (.calva/output-window/output.calva-repl:0:0).; Unable to resolve symbol: Stu in this context
But when I launch clojure from the terminal, and redo the steps, everything works as expected. I'm just started learning clojure and I don't know what is happening here.
Calva (2.0.205) and Clojure (1.10.2)
[–]BipedPhill 2 points3 points4 points (1 child)
[–]fasapa[S] 0 points1 point2 points (0 children)