mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 15:19:27 +02:00
10 lines
154 B
ObjectPascal
10 lines
154 B
ObjectPascal
Program Example64;
|
|
|
|
{ Program to demonstrate the SPtr function. }
|
|
Var
|
|
P :Longint;
|
|
|
|
begin
|
|
P:=Sptr; { P Contains now the current stack position. }
|
|
end.
|