mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:28:17 +02:00
16 lines
237 B
ObjectPascal
16 lines
237 B
ObjectPascal
program FadeIn1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, MainUnit1;
|
|
|
|
begin
|
|
Application.Title:='Fade In - Example for TLazIntfImage';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|