ReturnValue.hx 102 B

123456
  1. abstract ReturnValue(Int) from Int {
  2. public function new(i:Int):Void {
  3. this = i;
  4. return 123;
  5. }
  6. }