Skip to content

Instantly share code, notes, and snippets.

@xieyuheng
Created November 17, 2015 20:03
Show Gist options
  • Save xieyuheng/265b246a13a04d4487e1 to your computer and use it in GitHub Desktop.
Save xieyuheng/265b246a13a04d4487e1 to your computer and use it in GitHub Desktop.
(define-syntax cat
(syntax-rules ()
[(cat (str . args))
(format str . args)]
[(cat (str . args) (str2 . args2) ...)
(string-append
(cat (str . args))
(cat (str2 . args2) ...))]))
(define-syntax orz
(syntax-rules ()
[(orz . body)
(error (cat . body))]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment