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

Tree @master (Download .tar.gz)

forever.unlikely @masterraw · 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));
  }
}