mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-05 05:27:58 +08:00
7 lines
126 B
Forth
7 lines
126 B
Forth
|
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))
|