module Courses; export Course, TestType; object Course components: course:string; description: (* Represents a single course *); end Course; object TestType description: (* Enumeration for the different types of tests. (ie Exam, Quiz, Final, ...) *); end TestType; end Courses;