Skip to content

Instantly share code, notes, and snippets.

@nakajima
Created July 21, 2008 20:03
Show Gist options
  • Select an option

  • Save nakajima/72 to your computer and use it in GitHub Desktop.

Select an option

Save nakajima/72 to your computer and use it in GitHub Desktop.
(define (is-awesome? name)
(if (eq? name 'github)
#t
#f))
(is-awesome? 'pastie) ; => #f
(is-awesome? 'github) ; => #t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment