multiple-evalution-of-args-safe versions of repeat() { } and for_range() { } macros
[svn/Cll1h/.git] / demos / repeat.c
CommitLineData
04a13a6f 1#include "cll1.h"
2
3program
4{
a3c2aecb 5 int i=2;
6
7 repeat(1)
04a13a6f 8 {
a3c2aecb 9 print("This is demonstration, that nesting of C<<1 repeat(N) { ... } flow-control macro is completely safe:");
10 repeat(i++)
11 {
12 echo("Outer loop is supposed to be done twice: ");
13 repeat(i)
14 {
15 printf("[doing this %d times] ",i);
16 }
17 print("... finished.");
18 }
04a13a6f 19 }
20}
This page took 0.172368 seconds and 4 git commands to generate.