Main.hx 191 B

123456789101112131415
  1. import haxe.CallStack;
  2. class Main {
  3. static function main() {
  4. trace(new Child());
  5. }
  6. }
  7. extern class Parent {}
  8. class Child extends Parent {
  9. public function new() {
  10. trace('hello');
  11. }
  12. }