Eliminating tabs

This commit is contained in:
RonaldoCMP
2020-07-24 13:30:19 +01:00
parent f61e30add2
commit 464c65ce8c
4 changed files with 91 additions and 91 deletions

View File

@@ -33,7 +33,7 @@ module test_in_list() {
assert(in_list("bar", ["foo", "bar", "baz"]));
assert(!in_list("bee", ["foo", "bar", "baz"]));
assert(in_list("bar", [[2,"foo"], [4,"bar"], [3,"baz"]], idx=1));
assert(!in_list("bee", ["foo", "bar", ["bee"]]));
assert(in_list(NAN, [NAN])==false);
}