Created
September 22, 2016 18:48
-
-
Save munk/51b5725d1f0f232816e5254020b4835e 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
(ns interactive) | |
(defn my-fancy-function | |
[x y z] | |
(* x y z)) | |
(comment | |
(= 1 (my-fancy-function 1 1 1)) ; eval here, move to a test ns when you're done and want a regression suite | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment