Found:
public class Test { public function Test() { trace("normal constructor"); }
For some reason, they did not ask a question about the static constructor in AS-3?
Dave , I checked: ActionScript initializers do not even need syntax:
public class Test extends Sprite { trace("hello world"); public function Test() { trace("constructor"); } trace("bye world"); }
n4pgamer
source share