binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / for_ints_strs.c
... / ...
CommitLineData
1#include "cll1.h"
2
3program
4{
5 int i;
6 str s;
7
8 echo("for_ints(i, 8,1,-2,745,-32,-64,27,4) ): ");
9 for_ints(i, 8,1,-2,745,-32,-64,27,4 ) printf(" [%d]",i);
10 print("");
11
12 echo("for_strs(s, \"aasd\",\"snres\",\"sdfrm\",\"ojffgt\",\"wweqwe\" )): ");
13 for_strs(s, "aasd","snres","sdfrm","ojffgt","wweqwe" ) echo(" [",s,"]");
14 print("");
15}
This page took 0.079891 seconds and 4 git commands to generate.