X-Git-Url: http://git.harvie.cz/?p=svn%2FCll1h%2F.git;a=blobdiff_plain;f=demos%2Frepeat.c;fp=demos%2Frepeat.c;h=491b74ddde05917cc6ed7b776aa41ba72f094eb7;hp=db3726a31cbeb55d1986a43e50b79b5ca6057fa5;hb=eac5d6c70c3babc9056f059edd88a2c1a82bc7e9;hpb=7e4d757514e0d9904d6b31b5a08760eff306a9f2 diff --git a/demos/repeat.c b/demos/repeat.c index db3726a..491b74d 100644 --- a/demos/repeat.c +++ b/demos/repeat.c @@ -9,7 +9,7 @@ program print("This is demonstration, that nesting of C<<1 repeat(N) { ... } flow-control macro is completely safe:"); repeat(i++) { - echo("Outer loop is supposed to be repeated twice: "); + echo("This loop is supposed to be repeated twice: "); repeat(i) { printf("[doing this %d times] ",i); @@ -31,6 +31,6 @@ program } repeat(--i) { - print("Last loop is not nested and it is supposed to be repeated again just twice."); + print("This loop is not nested and it is supposed to be repeated again just twice."); } }