mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 20:10:19 +02:00
10 lines
97 B
ObjectPascal
10 lines
97 B
ObjectPascal
{$mode delphi}
|
|
|
|
var
|
|
a : array[0..32] of char;
|
|
p : pchar;
|
|
i : integer;
|
|
begin
|
|
p:=a+i;
|
|
end.
|