

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions and assignments for students in the csci 3210 course, focusing on lisp functions. Students are required to complete a cultural survey, write combinations of firsts and rests to extract specific values, create lisp functions for arithmetic operations, and define functions based on given conditions. Submission guidelines are also provided.
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!


Program Assigned: September 4, 2008 Program Due: September 9, 2008 (midnight)
For example (first (rest (first (rest „(a (b X) (d e)))))) => X
(bill bob jane X fred carl) (bill (bob jane) (X fred) carl) (bill (88 (jane (33 X fred ))) hillary) (bill hillary chelsea (monica (ken X)))
(1 + 2) * 3
2 * 4 + (6 – 8)
6 + 2/
Submitting programs for this course:
The first three lines of any LISP program should be comments containing your name, and an identification of assignment being solved. For example:
;;; Henry M. Walker ;;;;Assignment First
Also, a comment is needed for every procedure, stating in English what that procedure is supposed to do.