;; CSU 211 -- Spring 05 -- Lab 1 (define-struct person (first last age)) ;; A Person is a structure: (make-person (first last age)) where ;; first and last are Strings and age is a Number ;; Template #| ;; process-person: Person -> ?? ;; ?? (define (process-person a-person) ... (person-last a-person) ... ... (person-first a-person) ... ... (person-age a-person) ... ) |# ;; TODO: Write a function produce a string consisting of ;; the persons first and last names and age ;; TODO: Write a function produce a string consisting of ;; the persons first and last names ;; TODO: Write a function produce a string consisting of ;; the persons first name and age ;; TODO: Write a function produce a string consisting of ;; the persons last name and age