Componentes.Terceros.jcl/official/1.104/examples/common/textconverter/TextConverter.dpr

14 lines
217 B
ObjectPascal
Raw Normal View History

program TextConverter;
uses
Forms,
TextConverterMain in 'TextConverterMain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.