(print (values 1 2 3)) ;; no problem (define (stuff) (call/cc (lambda (return) (return 1 2 3)))) (print (stuff)) ;; error