Initial work

This commit is contained in:
bluepython508
2023-11-01 08:55:40 +00:00
parent 996ea45153
commit 688d1ec426
48 changed files with 1148 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
(def grades {
"A+" "4.0"
"A" "4.0"
"A-" "3.7"
"B+" "3.3"
"B" "3.0"
"B-" "2.7"
"C+" "2.3"
"C" "2.0"
"C-" "1.7"
"D+" "1.3"
"D" "1.0"
})
(defn main [_ arg] (print (or (grades arg) "Not a grade")))