summaryrefslogtreecommitdiff
path: root/tests/sources/0500_loop_count.c
blob: ace98cff34c6d80fcdb3764f1e10ffdaf02e21ec (plain) (blame)
1
2
3
4
5
int x = 0;
while (x < 100) {
  print(x);
  x = x + 1;
}