mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 11:38:04 +02:00
15 lines
200 B
ObjectPascal
15 lines
200 B
ObjectPascal
program JPEGExample;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, MainForm;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TJPEGExampleForm, JPEGExampleForm);
|
|
Application.Run;
|
|
end.
|
|
|