mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
6 lines
129 B
GLSL
6 lines
129 B
GLSL
var a = array_create_repeated(100, 10)
|
|
assert(a.size == 10)
|
|
assert(array_pop(a), 100)
|
|
assert(array_clear(a))
|
|
assert(a.size == 0)
|