Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Created February 7, 2013 21:28
Show Gist options
  • Save lambdamusic/4734409 to your computer and use it in GitHub Desktop.
Save lambdamusic/4734409 to your computer and use it in GitHub Desktop.
Scheme: scheme: check for optional arguments
(define-macro (p r . otherstuff)
`(if (null? (list ,@otherstuff))
(print ,r)
(print ,@otherstuff)))
(p 'c 'ciao)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment