pascalabcnet/bin/template.pct

205 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-05-14 22:35:07 +03:00
[b]
begin
|
end;
[be]
begin
|
end.
[i]
integer
[s]
string
[bo]
boolean
2019-03-02 16:37:53 +03:00
[l]
loop 10 do
|
[lb]
loop 10 do
begin
|
end;
2015-05-14 22:35:07 +03:00
[f]
2019-03-02 16:37:53 +03:00
for var i:=1 to 10 do
|
2015-05-14 22:35:07 +03:00
[fb]
2019-03-02 16:37:53 +03:00
for var i:=1 to 10 do
2015-05-14 22:35:07 +03:00
begin
2019-03-02 16:37:53 +03:00
|
2015-05-14 22:35:07 +03:00
end;
[fore]
2019-03-02 16:37:53 +03:00
foreach var x in a do
|
2015-05-14 22:35:07 +03:00
[foreb]
2019-03-02 16:37:53 +03:00
foreach var x in a do
2015-05-14 22:35:07 +03:00
begin
2019-03-02 16:37:53 +03:00
|
2015-05-14 22:35:07 +03:00
end;
[if]
if | then
[ifb]
if | then
begin
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[ifeb]
if | then
begin
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end
else
begin
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[case]
case | of
: ;
: ;
end;
[class]
2019-07-24 20:23:04 +03:00
type | = class
2015-05-14 22:35:07 +03:00
2019-07-17 22:02:27 +03:00
end;
2015-05-14 22:35:07 +03:00
[w]
while | do
[wb]
while | do
begin
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[r]
repeat
2019-07-24 20:23:04 +03:00
|
until ;
2015-05-14 22:35:07 +03:00
2019-03-02 16:37:53 +03:00
[p]
Print(|);
[pln]
Println(|);
2015-05-14 22:35:07 +03:00
[pr]
procedure |();
begin
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[fu]
function |(): ;
begin
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[ar]
2016-10-13 00:56:12 +03:00
array of |;
2015-05-14 22:35:07 +03:00
2020-08-01 00:13:27 +03:00
[a]
→|
2015-05-14 22:35:07 +03:00
[try]
try
|
except
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[tryo]
try
|
except
on e: Exception do
2019-07-24 20:23:04 +03:00
2015-05-14 22:35:07 +03:00
end;
[tryf]
try
|
finally
2019-07-17 22:02:27 +03:00
2015-05-14 22:35:07 +03:00
end;
[program]
program <filename>;
begin
|
end.
[library]
library <filename>;
begin
|
end.
[unit]
unit <filename>;
interface
2019-07-17 22:02:27 +03:00
|
2015-05-14 22:35:07 +03:00
implementation
2019-07-17 22:02:27 +03:00
begin
2015-05-14 22:35:07 +03:00
end.
2019-07-17 22:02:27 +03:00
[graph]
2019-03-02 16:37:53 +03:00
uses GraphWPF;
2015-05-14 22:35:07 +03:00
begin
|
end.
[grabc]
uses GraphABC;
begin
|
end.
2015-05-14 22:35:07 +03:00
[wf]
2019-07-17 22:02:27 +03:00
{$reference System.Windows.Forms.dll}
{$reference System.Drawing.dll}
{$apptype windows}
2015-05-14 22:35:07 +03:00
2019-07-17 22:02:27 +03:00
uses System.Windows.Forms;
uses System.Drawing;
2015-05-14 22:35:07 +03:00
begin
2019-07-17 22:02:27 +03:00
var MainForm := new Form;
|
Application.Run(MainForm);
2015-05-14 22:35:07 +03:00
end.
[ref]
2019-07-17 22:02:27 +03:00
{$reference '|'}
2019-07-10 11:03:55 +03:00
[reg]
2019-07-17 22:02:27 +03:00
{$region |}
2019-07-10 11:03:55 +03:00
{$endregion}