Skip to content

Instantly share code, notes, and snippets.

@schinns
Created January 30, 2020 22:05
Show Gist options
  • Save schinns/5929afed62ef34de3cdf509cb3669576 to your computer and use it in GitHub Desktop.
Save schinns/5929afed62ef34de3cdf509cb3669576 to your computer and use it in GitHub Desktop.
BSL predicates and conditional expression
(define in "juiceba")
(define (converter data) (
cond
[(string? data) (string-length data)]
[(boolean? data) (if data 10 20)]
))
(converter in)
(converter #true)
(converter #false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment