Created
June 22, 2017 16:33
-
-
Save infinite-Joy/e3abcbd1fc61c7ce0e76742a694f1e29 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 a1 "My favorite lang is ") | |
#'user/a1 | |
user=> (def a2 "Clojure") | |
#'user/a2 | |
user=> (str a1 a2) | |
"My favorite lang is Clojure" | |
user=> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment