|
|
|
|
|
by no_wizard
438 days ago
|
|
There's an example I saw where `'` was used as a way to denote a symbol, but I can't find that explicit example. It wasn't SBCL, I believe it may have been Clojure. Its possible I'm misremembering. That said, since I work in C-like languages during the day, I suppose my minor complaint has to do with ease of transition, it always takes me a minute to get acquainted to Lisp syntax and read Lisp code any time I work with it. Its really a minor complaint and one I probably wouldn't have if I worked with a Lisp language all day. |
|
For example in a quoted list, you dont need to quote the symbols because they are already in a quoted expression!
'(hello hola)
' really just says "do not evaluate whats next, treat it as data"