Computer Science Fundamentals (CS153 2004S)
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[Instructions]
[Links]
[Search]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[Experiments in Java]
[Java API]
[Scheme Reference]
[Scheme Report]
[CS153 2003S]
[CS151 2003F]
[CS152 2000F]
[SamR]
Back to Higher-Order Procedures (1). On to Higher-Order Procedures (3).
Held: Wednesday, 18 February 2004
Summary: Today we continue our investigations into higher-order procedures by grounding our discussion in further hands-on activities.
Related Pages:
Due
Assignments:
Notes:
Overview:
left-section
(define left-section
(lambda (binproc left-param)
(lambda (right-param)
(binproc left-param right-param))))
(define symbol-or-string?
(lambda (val)
(or (symbol? val) (string? val))))
(define symbol-or-string? (conjunction symbol? string?))
Back to Higher-Order Procedures (1). On to Higher-Order Procedures (3).
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[Instructions]
[Links]
[Search]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[Experiments in Java]
[Java API]
[Scheme Reference]
[Scheme Report]
[CS153 2003S]
[CS151 2003F]
[CS152 2000F]
[SamR]
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 Fri May 7 09:43:12 2004.
The source to the document was last modified on Tue Jan 13 10:26:10 2004.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS153/2004S/Outlines/outline.17.html.
You may wish to
validate this document's HTML
;
;
Check with Bobby