mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-08 09:32:36 +02:00
17 lines
282 B
ObjectPascal
17 lines
282 B
ObjectPascal
program fontenumeration;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, mainunit;
|
|
|
|
begin
|
|
Application.Title:='project1';
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.Run;
|
|
end.
|
|
|