1つのassign()だけを使用してファイルの読み取りと書き込みを行うことはできますか?
私は次のような意味です:
assign(fl, 'file.txt');
reset(fl)
// I know, that when I use reset - I have only read permission,
// but is there any other option to read and write opening the file only once?
read(fl, variable);
write(fl, 'asdf);
close(fl);