lazarus/examples/bidi/project1.lpr
mattias 9361e5a7ae IDE: fixed change file line ending
git-svn-id: trunk@25195 -
2010-05-04 20:58:31 +00:00

21 lines
354 B
ObjectPascal

program project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Classes,
Forms
{ add your units here }, unit1;
begin
Application.Initialize;
Application.BidiMode := bdRightToLeft;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.