|
|
|
|
|
by grzm
1119 days ago
|
|
In Clojure (and I’m pretty sure Scheme), ! and ? are not sigils in the sense that they’re special syntax like, say, @ (which is a reader macro), or @ and @@ in Ruby: they just tend to be used by convention. ! and ? are no different than a or b. You can read more about the Clojure reader here: https://clojure.org/reference/reader |
|