(Under construction.)
type
Pointer { built-in type }
Pointer is a Borland Pascal extension.
program PointerDemo;
var
a: Integer;
b: Boolean;
p: Pointer;
begin
p := nil;
p := @a;
p := @b
end.