mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-17 17:48:55 +00: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))
|