-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmitGrades.ur
21 lines (19 loc) · 889 Bytes
/
mitGrades.ur
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(* Assignment of final grades, with export in MIT Online Grades format *)
open Bootstrap
open MitGradesGeneric.Make(struct
con grades = _
val grades : $(mapU string grades) =
{Aplus = "A+",
A = "A",
Aminus = "A-",
Bplus = "B+",
B = "B",
Bminus = "B-",
Cplus = "C+",
C = "C",
Cminus = "C-",
D = "D",
F = "F",
I = "I",
O = "O"}
end)