-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacilSyntaxTool.lpr
41 lines (30 loc) · 964 Bytes
/
FacilSyntaxTool.lpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
program FacilSyntaxTool;
{ =========================================================================
NAME FacilSyntaxTool
Demo program to test the capabilities of SynFacil as a proof of concept
based on the work of Tito Hinostroza units:
SynFacilBasic
SynFacilHighlighter
ORIGINAL SOURCE: https://github.com/t-edson/SynFacilSyn
COPYRIGHT (c) 12/2023 - Alexander Weidauer; [email protected]
This program is free software; you can redistribute it and/or modify
it under the same terms as SynFacilSyn itself, either version 1.21 or,
at your option, any later version of SynFacilSy you may have available.
}
{$MODE OBJFPC}
{$LONGSTRINGS ON}
uses
{$IFDEF UNIX}
{$IFDEF UseCThreads}
cthreads,
{$ENDIF}
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, UMainForm;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TFrmMain, FrmMain);
Application.Run;
end.