Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

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