Skip to content

Instantly share code, notes, and snippets.

@richo
Created May 25, 2012 02:04
Show Gist options
  • Save richo/2785373 to your computer and use it in GitHub Desktop.
Save richo/2785373 to your computer and use it in GitHub Desktop.
(define (mything arg) ->
if arg
(print "true")
(print "false")
; Compiles to
(define (mything arg)
(if arg
(print "true")
(print "false")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment