erlang スクリプトをコンパイルしようとすると、次のエラーが発生し続けます。
(master@WN7-18TL6M1.amer.dell.com)15> c(distribute).
distribute.erl:55: syntax error before:
distribute.erl:42: function get_completed/3 undefined
error
ここに私の情報源があります:
get_completed(Current, Index, Count) ->
if
length(Current) >= Index ->
{Count, length(Current)};
true ->
if
lists:nth(Index, Current) == 'timeout' ->
get_completed(Current, Index+1, Count);
true ->
get_completed(Current, Index+1, Count+1)
end
end
55行目が最後end