mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
4 lines
70 B
ChaiScript
4 lines
70 B
ChaiScript
var x = [1, 2u, 3.0l]
|
|
assert_equal(3.0l, x[2])
|
|
assert_equal(2u, x[1])
|