mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-20 14:52:33 +02:00
10 lines
163 B
ObjectPascal
10 lines
163 B
ObjectPascal
Program Example64;
|
|
|
|
{ Program to demonstrate the SPtr function. }
|
|
Var
|
|
P :Longint;
|
|
|
|
begin
|
|
P:=Longint(Sptr); { P Contains now the current stack position. }
|
|
end.
|