ReturnEarly.hx 98 B

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