MyTools.hx 76 B

12345
  1. class MyTools {
  2. static public function double(x:Int) {
  3. return x * 2;
  4. }
  5. }