TRUE, FALSE and MAYBE
[svn/Cll1h/.git] / demos / boolean.c
1 #include "cll1.h"
2
3 program
4 {
5 boolean t = TRUE, f = FALSE, m = MAYBE;
6
7 print("TRUE and FALSE = ", bool_str(t and f) );
8 print("TRUE or FALSE = ", bool_str(t or f) );
9 print("TRUE and MAYBE = ", bool_str(t and m) );
10 print("FALSE or MAYBE = ", bool_str(t or m) );
11 print("not FALSE = ", bool_str(not f) );
12 print("not TRUE = ", bool_str(not t) );
13 print("not MAYBE = ", bool_str(not m) );
14 }
This page took 0.238119 seconds and 4 git commands to generate.