Removed MalType::Bool

mplemented instead MalType::T as opposed to Maltype::Nil
This commit is contained in:
teo3300
2025-06-13 18:30:20 +09:00
parent e97a348e80
commit 9af7ada706
11 changed files with 50 additions and 43 deletions

View File

@ -8,13 +8,13 @@
; nil
(assert (= nil nil))
(assert (not (= nil true)))
(assert (not (= nil t)))
(assert (not (= nil 1)))
; bool
(assert (= true true))
(assert (not (= false true)))
(assert (not (= true 1)))
(assert (= t t))
(assert (not (= nil t)))
(assert (not (= t 1)))
; int
(assert (= 1 1))