summaryrefslogtreecommitdiff
path: root/tex/thesis/implementation/experiments/irreducible.c
blob: 4402be68ca6c8f85f69f69d5d7f0ec5268fa63dd (about) (plain)
1
2
3
4
5
6
7
8
9
int irreducible() {
  int x = 1;
  while (x > 0) {
    if (x < 2)
      x = x + 1;
    x = x + 1;
  }
  return x;
}