Main.hx 91 B

123456
  1. class Main {
  2. public var test:Int;
  3. public function set_test(i:String) {
  4. test = 42;
  5. }
  6. }