git @ Cat's Eye Technologies Unlikely / rel_1_0_2013_1014 eg / forever.unlikely
rel_1_0_2013_1014

Tree @rel_1_0_2013_1014 (Download .tar.gz)

forever.unlikely @rel_1_0_2013_1014raw · history · blame

1
2
3
4
5
6
7
8
9
class LoopForever(LoopForever,Print,Chain) extends Program {
  LoopForever lf;
  Print p;
  method continue(Passive accumulator) {
    p = new Print(Passive,Chain);
    p.next = new LoopForever(Passive,LoopForever,Print,Chain);
    goto p.continue(new 1(Passive));
  }
}