Created
January 20, 2020 02:53
-
-
Save jakeisnt/b11fd6541cda940beb090b96a00569f3 to your computer and use it in GitHub Desktop.
GraduateNU in ISL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; A SeasonEnum is one of: | |
| ;; - FL, a fall term | |
| ;; - SP, a spring term | |
| ;; - S1, a summer 1 term | |
| ;; - S2, a summer 2 term | |
| ;; - SM, a full summer term (usually reserved for grad courses) | |
| ;; and represents one of the seasons in which a student can take a course. | |
| ;; An ICompleteCourse is a | |
| ;; (make-course Boolean String Number String Number Season Number Number), | |
| ;; where: | |
| ;; - hon represents whether this course is an honors course. | |
| ;; - subject denotes the subject of this course. | |
| ;; - classId denotes the number associated with this specific course. | |
| ;; - name described the unique name of this course. | |
| ;; - creditHours details the number of credit hours this course is worth. | |
| ;; - season details the season during which this course was taken. | |
| ;; - year represents the year in which the course was taken. | |
| ;; - termId represents Northeastern's term identifier. | |
| ;; and represents a completed Northeastern course. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment