Componentes.Terceros.RemObj.../internal/5.0.24.615/1/Data Abstract for Delphi/Samples/Regular Expressions/RegularExpressions.dpr

15 lines
342 B
ObjectPascal

program RegularExpressions;
uses
Forms,
RegularExpressionsMain in 'RegularExpressionsMain.pas' {RegularExpressionsMainForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Regular Expressions';
Application.CreateForm(TRegularExpressionsMainForm, RegularExpressionsMainForm);
Application.Run;
end.