csci2041/repo-zhan4854/Lab_15/examples/four.src.txt
Michael Zhang 399845160c
f
2018-01-29 17:35:31 -06:00

15 lines
230 B
Text

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,
])