summaryrefslogtreecommitdiff
path: root/tests/exec/for2.cpp
blob: 65ce735cc06864d8e95c39c07b25eeba3c52a23a (plain) (blame)
1
2
3
4
5
6
7
8
#include <iostream>

int main() {
  int i;
  for (i = 0; i < 10; i++)
    std::cout << "i = " << i << "\n";
  std::cout << "i = " << i << "\n";
}