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