Main.hx 177 B

123456789101112
  1. class Main {
  2. static function main() {
  3. trace("Haxe is great!");
  4. #if js
  5. trace('x');
  6. #elsif js
  7. trace('elif');
  8. #else
  9. trace('end');
  10. #end
  11. }
  12. }