Erlang でファイルの指定された行の末尾に単語を書き込むにはどうすればよいでしょうか。
1行目: 「彼はジョンです」
write_word("poem.txt",1," doe.").
1行目: 「彼はジョン・ドウです。」
これが私ができるすべてです:
write_word(Filename, LineNumber, Word) ->
{ok, Data} = file:open(FileName, [read, write]),
% write the word at end of line with the specified line number