init.lox 132 B

123456789101112
  1. class Oops {
  2. init() {
  3. fun f() {
  4. print "not a method";
  5. }
  6. this.field = f;
  7. }
  8. }
  9. var oops = Oops();
  10. oops.field();