C<<1 va_list based print and echo commands finaly work
[svn/Cll1h/.git] / demos / boolean.c
CommitLineData
099b0ca0 1#include "cll1.h"
2
3program
4{
5 boolean t=TRUE,f=FALSE;
420bb771 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) );
099b0ca0 11}
This page took 0.09539 seconds and 4 git commands to generate.