add list test and make amount of fibonacci numbers to test for
All checks were successful
/ test (push) Successful in 43s

This commit is contained in:
Neemek 2025-09-16 20:02:32 +02:00
parent 80f4364f7e
commit dac2cbc20d
2 changed files with 4 additions and 3 deletions

View file

@ -25,3 +25,6 @@ while x <= 100 {
assertEq([1, 2] + [3], [1, 2, 3])
assertEq(["Eny", "meanie"] + ["minie", "moe"], ["Eny", "meanie", "minie", "moe"])
assertEq("abcd".split(""), ["a", "b", "c", "d"])
assertEq("the, first, time".split(", "), ["the", "first", "time"])