Main.hx 135 B

12345678
  1. function main() {}
  2. abstract Foo(String) {
  3. public inline function new(str:String)
  4. this = str;
  5. }
  6. inline final foo = new Foo("foo");