Created
January 22, 2017 14:17
-
-
Save deque-blog/22fd4fa52a3a101d15650f2c27241464 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
(defn cst [n] n) | |
(defn sym [s] s) | |
(defn add [& args] (into [:add] args)) | |
(defn mul [& args] (into [:mul] args)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment