2025-06-16 18:28:08 +05:00

9 lines
150 B
JavaScript
Executable File

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