mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 12:08:16 +08:00
7 lines
130 B
GLSL
7 lines
130 B
GLSL
var a = array_create_with_str("1,2,3,4,0", ",");
|
|
|
|
print(array_min(a))
|
|
print(array_max(a))
|
|
print(array_avg(a))
|
|
print(array_sum(a))
|