;;; Information about some students (not real students). ;;; Author: ;;; Samuel A. Rebelsky ;;; Version: ;;; 1.0 of October 2000 ;;; Each student is in the format ;;; (name ; a string ;;; id ; a string ;;; year ; a string ;;; major ; a string ;;; courses ; a list of courses ;;; ) ;;; Each course has the format ;;; (semester ;;; department ;;; number ;;; grade ;;; credits) (define students '(("Sarah Schemer" "000011235" "2002" "CS" (("Fall 1998" "Math/CS" "CSC151" "A-" 4) ("Fall 1998" "General" "TUT101" "B" 4) ("Fall 1998" "Math/CS" "MAT133" "C+" 4) ("Spring 1999" "Math/CS" "CSC152" "F" 0) ; Made up next semester ("Spring 1999" "Anthropology" "ANT154" "B" 4) ("Fall 1999" "Math/CS" "CSC152" "B" 4))) ("Steven Schemer" "000011236" "2003" "Math" (("Fall 1998" "General" "TUT101" "B" 4) ("Fall 1998" "Math/CS" "MAT133" "C+" 4) ("Spring 1999" "Math/CS" "CSC151" "A" 4))) ("Sam Rebelsky" "00000000" "1985" "Math" (("Fall 1982" "Sociology" "SOC101" "B" 4) ("Fall 1982" "Math/CS" "MAT217" "A" 4) ("Fall 1982" "Physics" "PHY101" "A" 4))) ))