;;;;;;;;;;;; ;STUDENT SUBMISSION ;;;;;;;;;;;; ;;;;;; START gte123x ;;;;; ;;;; NAME: Bubba Smith ;;;; GTNUM: gte123x ;;;; ;;;; ASSIGNMENT: Homework 1 ;;;; DATE: May 18, 2001 ;;;;; ;;; <1> ; This is a sample essay question answer. Notice how each line does not ; go past 80 characters. Notice also how there is a semi-colon at the ; beginning of every line. ;;; <2> ; This is what a comment would look like: ; This is my square function. It takes in an integer and returns the square ; of that integer. (define (square number) (* number number)) ;;;;;; END gte123x