C<<1 va_list based print and echo commands finaly work
[svn/Cll1h/.git] / demos / boolean.c
index 838e31c44789501a0058e74167b13f1913c72e57..1b5f1e2293e946a8018ab8146ff0b124a630a767 100644 (file)
@@ -3,9 +3,9 @@
 program
 {
  boolean t=TRUE,f=FALSE;
- printf("TRUE and FALSE = %s", bool_str(t and f) );
- printf(",TRUE or FALSE = %s", bool_str(t or f) );
- printf(",not FALSE = %s", bool_str(not f) );
- printf(",not TRUE = %s\n", bool_str(not t) );
+
+ print("TRUE and FALSE = ", bool_str(t and f) );
+ print("TRUE or FALSE = ", bool_str(t or f) );
+ print("not FALSE = ", bool_str(not f) );
+ print("not TRUE = ", bool_str(not t) );
 }
This page took 0.100349 seconds and 4 git commands to generate.