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

Tree @master (Download .tar.gz)

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