15 lines
219 B
Text
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.
|