about summary refs log tree commit diff stats
path: root/modal/tests/cases/03_and_or_not.modal
blob: 1bafb648629c9cfdb58a1b93c0448f7f88cc8068 (plain) (blame)
1
2
3
4
5
6
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))