clojure - Can two symbols be bound to the same var? -


in clojure, can ever true?

(= #'x #'y)     

examples of doesn't work:

user> (def x 1) #'user/x user> (def y x) #'user/y user> (= #'x #'y) false user> (def y #'x) #'user/y user> (= #'x #'y) false 

(refer 'clojure.core :only '[=] :rename '{= equal?})  (= #'= #'equal?) ;= true 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -