#!/usr/local/bin/rune -x # # Demonstrate a loop. library limport "sys"; int main(int ac, char **av) { int i; for (i = 0; i < 1000000; ++i) ; }