(* testing repeat stmts *) main(): void { a, b: int; { b = 10; repeat a = a + b until (a>100); repeat { a = a - b; b = a } until (100) } }