-
Notifications
You must be signed in to change notification settings - Fork 1
/
FR_US Looping & Branching.xml
executable file
·104 lines (70 loc) · 3.22 KB
/
FR_US Looping & Branching.xml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE macros SYSTEM "http://www.4d.com/dtd/2007/macros.dtd" >
<macros>
<!-- THE FOLLOWING MACROS ARE NOT DISPLAYED NOR IN THE MENU NOR IN THE TOOLBAR BUT AVAILABLE THRU TYPE AHEAD-->
<macro name="Si" in_menu="false" in_toolbar="false" type_ahead="true">
<text>If(<caret/>)
<selection/>
Else
// A "If" statement should never omit a "Else" statement
End if</text>
</macro>
<macro name="Au cas ou" in_menu="false" in_toolbar="false" type_ahead="true">
<text>Case of
//______________________________________________________
:(<caret/>)
<selection/>
//______________________________________________________
:(False)
//______________________________________________________
Else
// A "Case of" statement should never omit a "Else" statement
//______________________________________________________
End case</text>
</macro>
<macro name="Tant que" in_menu="false" in_toolbar="false" type_ahead="true">
<text>While(<caret/>)
<selection/>
End while</text>
</macro>
<macro name="Boucle" in_menu="false" type_ahead="true" in_toolbar="false">
<text>For($i;1;<caret/>;1)
<selection/>
End for</text>
</macro>
<macro name="Repeter" in_menu="false" type_ahead="true" in_toolbar="false">
<text>Repeat
<selection/>
Until(<caret/>)</text>
</macro>
<macro name="Fin de si" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End if</text>
</macro>
<macro name="Fin de boucle" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End for</text>
</macro>
<macro name="Fin tant que" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End while</text>
</macro>
<macro name="Fin de cas" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End case</text>
</macro>
<macro name="Sinon" in_menu="false" type_ahead="true" in_toolbar="false">
<text>Else</text>
</macro>
<macro name="Jusque" in_menu="false" type_ahead="true" in_toolbar="false">
<text>Until</text>
</macro>
<macro name="Pour chaque" in_menu="false" type_ahead="true" in_toolbar="false">
<text>For each</text>
</macro>
<macro name="Fin de chaque" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End for each</text>
</macro>
<macro name="Use" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End for each</text>
</macro>
<macro name="Fin utiliser" in_menu="false" type_ahead="true" in_toolbar="false">
<text>End use</text>
</macro>
</macros>