Fundamentals of CS I (CS151 2002F)
Primary:
[Skip To Body]
[Front Door]
[Current]
[Glance]
[Honesty]
[Instructions]
[Links]
[Search]
[Syllabus]
Groupings:
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
ECA:
[About]
[Grades]
[Quizzes]
[Submit Work]
[Change Password]
[Reset Password]
Miscellaenous:
[Scheme Reference]
[CS151 2002F Gum]
[CS151 2001S]
[SamR]
[Glimmer Labs]
[schemers.org]
Back to Variable-Arity Procedures. On to Discussion of Exam 2.
Held Friday, November 15, 2002
Summary
Today we consider why and how to return more than one value from a procedure.
Due
Assignments
Notes
Overview
values to return more than one
value from a procedure.
call-with-values procedure takes two parameters,
a zero-parameter procedure, genproc, that returns multiple values
and a procedure, proc, of the same number of parameters. It
evaluates genproc and applies proc to the result.
> (values 1 2) 1 2 > (call-with-values (lambda () (values 1 2)) +) 3 > (call-with-values (lambda () (values 1 2 3 4)) (lambda lst (cadr lst))) 2
Back to Variable-Arity Procedures. On to Discussion of Exam 2.
Primary:
[Skip To Body]
[Front Door]
[Current]
[Glance]
[Honesty]
[Instructions]
[Links]
[Search]
[Syllabus]
Groupings:
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
ECA:
[About]
[Grades]
[Quizzes]
[Submit Work]
[Change Password]
[Reset Password]
Miscellaenous:
[Scheme Reference]
[CS151 2002F Gum]
[CS151 2001S]
[SamR]
[Glimmer Labs]
[schemers.org]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Mon Dec 2 08:41:56 2002.
The source to the document was last modified on Tue Sep 3 23:13:33 2002.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2002F/Outlines/outline.41.html.
You may wish to
validate this document's HTML
;
;
Check with Bobby