static ItIt range(int start, int stop) { ret new ItIt() { int i = start; public bool hasNext() { ret i < stop; } public Int next() { ret i++; } }; }