mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-26 21:08:45 +08:00
12 lines
185 B
Plaintext
12 lines
185 B
Plaintext
var res = [];
|
|
for(var i=0;i<1e6;i+=1) {
|
|
append(res, []);
|
|
}
|
|
res = [];
|
|
for(var i=0;i<1e6;i+=1) {
|
|
append(res, {});
|
|
}
|
|
res = [];
|
|
for(var i=0;i<1e6;i+=1) {
|
|
append(res, func {});
|
|
} |