mirror of
https://github.com/ulfgebhardt/delphi_textpad.git
synced 2025-12-12 17:25:49 +00:00
15 lines
211 B
ObjectPascal
15 lines
211 B
ObjectPascal
program TextPad;
|
|
|
|
uses
|
|
Forms,
|
|
main in 'main.pas' {fTextPad},
|
|
tpscript in 'tpscript.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfTextPad, fTextPad);
|
|
Application.Run;
|
|
end.
|