mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 16:28:30 +02:00
11 lines
174 B
ObjectPascal
11 lines
174 B
ObjectPascal
Program Example13;
|
|
|
|
{ Program to demonstrate the CSeg function. }
|
|
|
|
var W : word;
|
|
|
|
begin
|
|
W:=CSeg; {W:=0, provided for comppatibility,
|
|
FPC is 32 bit.}
|
|
end.
|