ace/demo/kitchen-sink/docs/jsx.jsx
2012-06-04 15:51:22 +09:00

9 lines
No EOL
150 B
JavaScript

/*EXPECTED
hello world!
*/
class Test {
static function run() : void {
// console.log("hello world!");
log "hello world!";
}
}