separate number into float and integer
This commit is contained in:
parent
10f55313b0
commit
daab50d54c
22 changed files with 848 additions and 428 deletions
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
assertEq(type(1), "number")
|
||||
assertEq(type(1), "int")
|
||||
assertEq(type("Hello"), "string")
|
||||
assertEq(type(true), "boolean")
|
||||
|
||||
# lists
|
||||
assertEq(type(["Hello", "world"]), "list[string]")
|
||||
assertEq(type([0, 1]), "list[number]")
|
||||
assertEq(type([0, 1]), "list[int]")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue