AST
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
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;
}