AST
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

20 行
367 B

var __requires__ = {}
fun require(__fileName__) {
if (__requires__[__fileName__] != null) {
return __requires__[__fileName__]
}
import(__fileName__);
__requires__[__fileName__]= scope();
return scope();
}
fun println() {
apply(print, __arguments__);
print("\n");
__arguments__;
}
fun millis() {
microseconds() / 1000;
}