9 lines
150 B
JavaScript
9 lines
150 B
JavaScript
/*EXPECTED
|
|
hello world!
|
|
*/
|
|
class Test {
|
|
static function run() : void {
|
|
// console.log("hello world!");
|
|
log "hello world!";
|
|
}
|
|
} |