2016-02-23 15:41:22 +01:00

9 lines
150 B
JavaScript

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