11 lines
146 B
Text
11 lines
146 B
Text
program SoundexDemo;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
uses
|
|
System.StrUtils;
|
|
|
|
begin
|
|
Writeln(Soundex('Ashcraft'));
|
|
Writeln(Soundex('Tymczak'))
|
|
end.
|