Skip to content

Instantly share code, notes, and snippets.

@jakeisnt
Created January 20, 2020 02:53
Show Gist options
  • Save jakeisnt/b11fd6541cda940beb090b96a00569f3 to your computer and use it in GitHub Desktop.
Save jakeisnt/b11fd6541cda940beb090b96a00569f3 to your computer and use it in GitHub Desktop.
GraduateNU in ISL
;; 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