mirror of
https://git.sr.ht/~rabbits/macintosh_cookbook
synced 2024-12-27 10:29:25 +00:00
14 lines
133 B
ObjectPascal
14 lines
133 B
ObjectPascal
program ExampleLoop;
|
|
|
|
var
|
|
a: Integer;
|
|
|
|
begin
|
|
|
|
ShowText;
|
|
for a := 10 to 20 do
|
|
begin
|
|
Writeln('value of a: ', a);
|
|
end;
|
|
|
|
end. |