mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-12 10:49:25 +02:00
27 lines
343 B
ObjectPascal
27 lines
343 B
ObjectPascal
program notebk;
|
|
|
|
//{$mode delphi}
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
uses
|
|
forms,
|
|
notebku;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.1 2000/07/13 10:28:21 michael
|
|
+ Initial import
|
|
|
|
Revision 1.3 1999/08/03 06:35:13 lazarus
|
|
Added cvs logging to bottom of unit
|
|
|
|
}
|
|
|