git @ Cat's Eye Technologies Unlikely / rel_1_0_2014_0819 eg / hello.unlikely
rel_1_0_2014_0819

Tree @rel_1_0_2014_0819 (Download .tar.gz)

hello.unlikely @rel_1_0_2014_0819raw · history · blame

1
2
3
4
5
6
7
8
class Hello(Print,Chain,Stop) extends Program {
  Print p;
  method continue(Passive accumulator) {
    p = new Print(Passive,Chain);
    p.next = new Stop(Passive);
    goto p.continue(new "Hello, world!"(Passive));
  }
}