Refactored parseIdentiferToValue(), removed unneeded safties

This commit is contained in:
2023-07-14 18:13:22 +10:00
parent 0e41b00ef4
commit c3c46b4fc6
2 changed files with 71 additions and 168 deletions

View File

@@ -92,4 +92,14 @@
}
//test deep-combine example
{
fn combine(a, b, c, d) {
return [[a, b], [c, d]];
}
assert combine(1, 2, 3, 4) == [[1, 2], [3, 4]], "deep-combine example failed";
}
print "All good";