mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-12 04:29:25 +01:00
10 lines
137 B
ObjectPascal
10 lines
137 B
ObjectPascal
Program Example60;
|
|
|
|
{ Program to demonstrate the Seg function. }
|
|
Var
|
|
W : Word;
|
|
|
|
begin
|
|
W:=Seg(W); { W contains its own Segment}
|
|
end.
|