選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

20 行
368 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;
}