fix wasm and tests
All checks were successful
/ test (push) Successful in 51s

This commit is contained in:
Neemek 2026-07-15 21:46:14 +02:00
parent 575fd8e37a
commit 7879184d56
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E
4 changed files with 40 additions and 59 deletions

View file

@ -1,10 +1,10 @@
assertEq(typeof(1), "int")
assertEq(typeof("Hello"), "string")
assertEq(typeof("Hello"), "str")
assertEq(typeof(true), "boolean")
# lists
assertEq(typeof(["Hello", "world"]), "[string]")
assertEq(typeof(["Hello", "world"]), "[str]")
assertEq(typeof([0, 1]), "[int]")
assertEq(typeof((0, 1)), "(int, int)")