little progress...
[svn/Cll1h/.git] / demos / boolean.c
1 #include "cll1.h"
2
3 program
4 {
5 boolean t=TRUE,f=FALSE;
6
7 printf("TRUE and FALSE = %s", bool_str(t and f) );
8 printf(",TRUE or FALSE = %s", bool_str(t or f) );
9 printf(",not FALSE = %s", bool_str(not f) );
10 printf(",not TRUE = %s\n", bool_str(not t) );
11 }
This page took 0.263363 seconds and 4 git commands to generate.