mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 10:52:35 +02:00
16 lines
245 B
ObjectPascal
16 lines
245 B
ObjectPascal
program ImagesExample;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, MainForm;
|
|
|
|
begin
|
|
Application.Title:='Images Example';
|
|
Application.Initialize;
|
|
Application.CreateForm(TImagesExampleForm, ImagesExampleForm);
|
|
Application.Run;
|
|
end.
|
|
|