csci2041/repo-zhan4854/Lab_15/examples/four.src.txt

16 lines
230 B
Text
Raw Normal View History

2018-01-29 23:35:31 +00:00
function add(x : int, y : int) =
x + y;
function sum_array(arr : int[]) =
fold(add, arr);
function process(arr : int[]) =
sum_array(arr);
process([
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
])