Rune - Content-locking work 1/2
[rune.git] / tests / loop1m.d
1 #!/usr/local/bin/rune -x
2 #
3 #       Demonstrate a loop.
4
5 library limport "sys";
6
7 int
8 main(int ac, char **av)
9 {
10         int i;
11
12         for (i = 0; i < 1000000; ++i)
13                 ;
14 }