exprs.matzo 166 B

123456789
  1. (* catenation *)
  2. puts This That The-Other;
  3. (* choice *)
  4. puts This | That | The-Other;
  5. (* weighted choice *)
  6. puts 5: This | That;
  7. (* application *)
  8. puts foo.bar.baz;