RosettaCodeData/Task/Soundex/Delphi/soundex.pas

12 lines
146 B
ObjectPascal

program SoundexDemo;
{$APPTYPE CONSOLE}
uses
System.StrUtils;
begin
Writeln(Soundex('Ashcraft'));
Writeln(Soundex('Tymczak'))
end.