aboutsummaryrefslogtreecommitdiff
path: root/boca-1.5.0/doc/tests/fontes/bits-timelimit.cpp
blob: 25cb5174eae342fa09f81082814ee93d90e5458c (plain)
1
2
3
4
5
6
7
8
#include <iostream>
int main(void) {
  int n=0;
  while(42) {
    n++;
  }
  return 0;
}