mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:28:17 +02:00
19 lines
332 B
ObjectPascal
19 lines
332 B
ObjectPascal
program StreamAsXMLDemo;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, MainUnit;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TStreamAsXMLForm, StreamAsXMLForm);
|
|
Application.Run;
|
|
end.
|
|
|