pascalabcnet/InstallerSamples/LINQ/TextFileCount1.pas

7 lines
205 B
ObjectPascal
Raw Permalink Normal View History

begin
var d := Dict('begin' to 0);
var words := ReadAllText('TextFileCount1.pas').ToWords(AllDelimiters);
2015-05-14 22:35:07 +03:00
foreach var word in words do
d[word] := d.Get(word) + 1;
d.Print(NewLine);
end.