mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 09:33:41 +02:00
10 lines
138 B
ObjectPascal
10 lines
138 B
ObjectPascal
Program Example60;
|
|
|
|
{ Program to demonstrate the Seg function. }
|
|
Var
|
|
W : Word;
|
|
|
|
begin
|
|
W:=Seg(W); { W contains its own Segment}
|
|
end.
|