Skip to content

Instantly share code, notes, and snippets.

@dyoo
Created December 2, 2012 04:50
Show Gist options
  • Save dyoo/4187010 to your computer and use it in GitHub Desktop.
Save dyoo/4187010 to your computer and use it in GitHub Desktop.
example of values for raphie
#lang racket
(define (get-first-value f)
(call-with-values f
(lambda the-values
(first the-values))))
(get-first-value (lambda () (values 'a 'b 'c)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment