RosettaCodeData/Task/Soundex/Delphi/soundex.delphi
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

15 lines
219 B
Text

program SoundexDemo;
{$APPTYPE CONSOLE}
uses
SysUtils,
StrUtils;
begin
Writeln(Soundex('Soundex'));
Writeln(Soundex('Example'));
Writeln(Soundex('Sownteks'));
Writeln(Soundex('Ekzampul'));
Readln;
end.