1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 18:54:39 +02:00
This commit is contained in:
Justin Lin
2021-02-26 12:13:31 +08:00
parent 5244a6ea95
commit c31b9f12fe
3 changed files with 13 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ module test_every() {
echo("==== test_every ====");
assert(every([1, 2, 3, 4, 5], function(elem) elem > 0));
assert(every([1, 2, 3, 4, 5], function(elem) elem > 3));
assert(!every([1, 2, 3, 4, 5], function(elem) elem > 3));
}
test_every();