Computer Science 433
Programming Languages
Fall 2012, The College of Saint Rose
Agenda
Due at the start of class, Monday, October 22.
Please submit answers to these questions either as a hard copy (typeset or handwritten are OK) or by email to terescoj AT strose.edu by the start of class. Please use a clear subject line when submitting by email (e.g., CSC 433 Lecture Assignment 14, Joe Student). We will discuss these questions at the start of class, so no late submissions are accepted.
For example, the function call
(evens '(a b c d e))
would return the list
(b d)
For example, the function call
(make-lists '((4 dog)(1 cat)(6 cow)))
would return the list
((dog dog dog dog) (cat) (cow cow cow cow cow cow))
Examples