// uC example 7 -- an infinite loop void main() { int i; i = 0; while (1) { i = i + 1; } print 999999; }