wuz/tests/err_vars.wuz

9 lines
177 B
Plaintext
Raw Permalink Normal View History

2023-08-28 11:07:19 +00:00
let x = 0 ; x + 1.2
let x = false ; x + "false"
let x=0 ; let x=7
let x=[1, 2] ; x[7, 9]
let x = 0 ; x = 3.2
let x = 0 ; x = 7
let x=[1, 2] ; x[0] = 3.2
let x=[3, 4] ; x[0] = 7