git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@20 c37d764d-f447-7644-a108-883140d013fb
14 lines
217 B
ObjectPascal
14 lines
217 B
ObjectPascal
program TextConverter;
|
|
|
|
uses
|
|
Forms,
|
|
TextConverterMain in 'TextConverterMain.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|