jsx.jsx 150 B

123456789
  1. /*EXPECTED
  2. hello world!
  3. */
  4. class Test {
  5. static function run() : void {
  6. // console.log("hello world!");
  7. log "hello world!";
  8. }
  9. }