wuz/tests/err_ty_array.wuz

13 lines
170 B
Plaintext
Raw Normal View History

2023-08-24 09:55:54 +00:00
[]
2023-08-24 15:22:49 +00:00
[1, 2, 3, "4"]
[ [0, 1], ["0", "1"] ]
[1, 2, 3]["a"]
[1, 2, 3][false]
[1, 2, 3][3.14]
[1, 2, 3][ [0, 1] ]
[1, 2, 3][0, 0]
2023-08-24 17:30:31 +00:00
[1] + 1
[[1, 2]] + [1]
2023-08-24 17:52:33 +00:00
[1] * 2.3
2.3 * [4.2]