mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 11:39:01 +08: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)
|