mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 02:38:03 +02:00
16 lines
242 B
ObjectPascal
16 lines
242 B
ObjectPascal
program listview;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, testform;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm ( TForm1, Form1 ) ;
|
|
Application.Run;
|
|
end.
|
|
|