Created
June 22, 2017 15:37
-
-
Save infinite-Joy/4c156867025ced86f25a1ee62a1a9f1f to your computer and use it in GitHub Desktop.
This file contains 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
user=> (def x 1) | |
#'user/x | |
user=> x | |
1 | |
user=> (def y 2) | |
#'user/y | |
user=> (+ x y) | |
3 | |
user=> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment