little progress...
[svn/Cll1h/.git] / demos / boolean.c
CommitLineData
099b0ca0 1#include "cll1.h"
2
3program
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.125623 seconds and 4 git commands to generate.