class Program {
  void bar(int a) {
    for i = 0, a {
      callout("printf", "%d\n", i);
    }
  }

  void main() {
    bar(10);
  }
}
