Skip to content

Instantly share code, notes, and snippets.

@aharisu
Created August 9, 2014 01:20
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 aharisu/68b01deec8b9d9f3cdf0 to your computer and use it in GitHub Desktop.
Save aharisu/68b01deec8b9d9f3cdf0 to your computer and use it in GitHub Desktop.
(define c 3)
(define (add a)
(print "before")
(print (string-split "hoge huga" #\space))
(let1 b 5
(print (+ (mul a b) c)))
(print "after"))
(define (mul a b)
(* a b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment