while 92 B

1234567
  1. void main() {
  2. int a = 0;
  3. while(a < 5) {
  4. test(a);
  5. a = a + 1;
  6. }
  7. }