forked from xxq250/Nasal-Interpreter
⚡ optimize test files
httptest.nas: when clicking mandel.nas link, this may cause memory overflow in new gc
This commit is contained in:
+4
-11
@@ -1,19 +1,12 @@
|
||||
var condition_true=1;
|
||||
var condition_false=0;
|
||||
if(condition_true)
|
||||
{
|
||||
if(condition_true) {
|
||||
var a=1;
|
||||
}
|
||||
else if(!condition_false)
|
||||
{
|
||||
} else if(!condition_false) {
|
||||
var b=1;
|
||||
}
|
||||
elsif(!condition_true and condition_false)
|
||||
{
|
||||
} elsif(!condition_true and condition_false) {
|
||||
print("impossible");
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
var c=1;
|
||||
var d=1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user