(bdisp! true)
--> true
(bdisp! false)
--> false
(if true
(bdisp! true)
(bdisp! false))
--> true
(if false
(bdisp! true)
(bdisp! false))
--> false
|
Having defined the lambda-abstractions `if , `true' and `false'
it is easy to derive from these the abstractions `not', `and' and `or':
Georg P. Loczewski 2004-03-05