summaryrefslogtreecommitdiff
path: root/testsuite/t-values.scm
blob: e741ae4235e85a9584daed13fe47f51215c38527 (about) (plain)
1
2
3
4
5
6
7
8
(use-modules (ice-9 receive))

(define (do-stuff x y)
  (values x y))

(call-with-values (lambda ()    (values 1 2))
		  (lambda (x y) (cons x y)))