Last active
September 29, 2017 10:02
-
-
Save sundarj/53b65e83fb5ad422d54a74cb125c2aa8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
boot.user=> '#(+ 1 %) | |
(fn* [p1__4155#] (+ 1 p1__4155#)) | |
boot.user=> '#(+ 1 %1 %2) | |
(fn* [p1__4158# p2__4159#] (+ 1 p1__4158# p2__4159#)) | |
boot.user=> '@foo | |
(clojure.core/deref foo) | |
boot.user=> '@@foo | |
(clojure.core/deref (clojure.core/deref foo)) | |
boot.user=> '#'map | |
(var map) | |
boot.user=> ''2 | |
(quote 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment