3

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

4

1 に答える 1

5

最後の終了の後にピリオドで関数を終了する必要があります。

于 2012-05-07T18:09:24.377 に答える