summaryrefslogtreecommitdiff
path: root/tex/thesis/implementation/experiments/backwards_counter.c
blob: 3775031655af836ec95f194db831e43e6bdedca4 (about) (plain)
1
2
3
4
5
6
7
8
int backwards_counter() {
  int i = 100;
  while (i > 0) {
    i = i - 1;
  }
  return i;
}