mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 08:43:41 +02:00
12 lines
157 B
ObjectPascal
12 lines
157 B
ObjectPascal
Program Example2;
|
|
|
|
{ Program to demonstrate the Addr function. }
|
|
|
|
Const Zero = 0;
|
|
|
|
Var p : pointer;
|
|
|
|
begin
|
|
p:=Addr(Zero); { P points to 'Zero' ??? }
|
|
end.
|