Skip to content

Instantly share code, notes, and snippets.

@jspahrsummers
Created July 8, 2012 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jspahrsummers/3068780 to your computer and use it in GitHub Desktop.
Save jspahrsummers/3068780 to your computer and use it in GitHub Desktop.
$ make repl
=> (NSLog "%@" 5)
2012-07-07 04:33:01.074 a.out[65142:303] 5
=> (def print (fn [str] (NSLog "%@" str) nil))
2012-07-07 17:33:31.414 a.out[15035:303] 5
=> (print "foobar")
2012-07-07 17:33:31.414 a.out[15035:303] 5
2012-07-07 17:30:56.257 a.out[14778:303] foobar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment