Erlang语法错误

时间:2012-05-07 17:59:24

标签: erlang

当我尝试编译我的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

1 个答案:

答案 0 :(得分:4)

您需要在最后一个结束后的句点结束该功能。