pascalabcnet/_Presentations/2015 New Features/Programs/14_FilesStr3.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
144 B
ObjectPascal

begin
foreach var s in ReadLines('freqs.txt') do
begin
var ss := s.ToWords;
if ss[3] = 'verb' then
writeln(ss[2]);
end;
end.