-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathUnit3.lfm
More file actions
59 lines (59 loc) · 1.39 KB
/
Copy pathUnit3.lfm
File metadata and controls
59 lines (59 loc) · 1.39 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
object Form3: TForm3
Left = 347
Height = 383
Top = 107
Width = 502
ActiveControl = Memo1
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Form3'
ClientHeight = 383
ClientWidth = 502
Font.Height = -11
Font.Name = 'MS Sans Serif'
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
object Memo1: TMemo
Left = 8
Height = 334
Top = 8
Width = 485
Anchors = [akTop, akLeft, akRight, akBottom]
Lines.Strings = (
'This program acts as a replacement for a Free Pascal compiler.'
''
'The following variable types can be used:'
''
'Boolean, Integer'
''
'supported boolean operators:'
''
'not, and, or, xor, <, >, <=, >=, <>, ='
''
'supported integer operators:'
''
'+, -, *, div, mod, and, or, <, >, <=, >=, <>, ='
''
'It is allowed to do function calls and recursion'
''
'supported loop constructs:'
''
'For, While'
''
'This is only a subset of the Free Pasacl language, to see the full language spezifications see the Internet or read the turorial.'
)
ReadOnly = True
TabOrder = 0
end
object Button1: TButton
Left = 16
Height = 25
Top = 349
Width = 473
Anchors = [akLeft, akRight, akBottom]
Caption = 'OK'
TabOrder = 1
OnClick = Button1Click
end
end