Created
March 30, 2010 14:03
-
-
Save swannodette/349122 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
(ns test-code) | |
(defn foo [x y] | |
(+ x y)) | |
(foo z) ; line number | |
(foo 1 2 3) ; line number is 1 | |
(defn bar [x] | |
(foo x "bar")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment