You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; Lets define a sample var and access its value
closh $ (defhi"hello")
#'user/hi
closh $ (str hi)
"hello"
closh $ (str
#_=> hi
#_=> )
"hello";; Bug: By introducing an alias we will shadow a variable even inside clojure form;; (Because we process input on per line basis)
closh $ (defaliashi"echo hi")
closh $ (str
#_=> hi
#_=> )
Syntax error compiling at (REPL:0:0).
Unable to resolve symbol: echo in this context
The text was updated successfully, but these errors were encountered:
Here's a sample case:
The text was updated successfully, but these errors were encountered: