C<<1 va_list based print and echo commands finaly work
[svn/Cll1h/.git] / demos / boolean.c
1 #include "cll1.h"
2
3 program
4 {
5 boolean t=TRUE,f=FALSE;
6
7 print("TRUE and FALSE = ", bool_str(t and f) );
8 print("TRUE or FALSE = ", bool_str(t or f) );
9 print("not FALSE = ", bool_str(not f) );
10 print("not TRUE = ", bool_str(not t) );
11 }
This page took 0.230755 seconds and 4 git commands to generate.