mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-26 21:08:45 +08:00
✨ optimize codegen
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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 {});
|
||||
}
|
||||
Reference in New Issue
Block a user