diff options
Diffstat (limited to 'modal/tests/cases/03_and_or_not.modal')
-rw-r--r-- | modal/tests/cases/03_and_or_not.modal | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modal/tests/cases/03_and_or_not.modal b/modal/tests/cases/03_and_or_not.modal new file mode 100644 index 0000000..1bafb64 --- /dev/null +++ b/modal/tests/cases/03_and_or_not.modal @@ -0,0 +1,7 @@ +<> (and #t #t) #t <> (or #t #t) #t +<> (and #t #f) #f <> (or #t #f) #t +<> (and #f #t) #f <> (or #f #t) #t +<> (and #f #f) #f <> (or #f #f) #f +<> (not #t) #f <> (not #f) #t + +(not (and #t #f)) |