编译时给出{ok,assignment5}。

 three_a(F) -> fun(Y) -> lists:foldl(F,0,Y).


写完之后

F1=assignment5:three_a(fun(X,Sum) -> X+Sum end).




** exception error: undefined function assignment5:three_a/1


请帮忙!

最佳答案

所有funsanonymous functions)以fun(.)开头并以end结尾。1

07-24 09:15