mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-01 21:13:41 +02:00
11 lines
173 B
ObjectPascal
11 lines
173 B
ObjectPascal
Program Example13;
|
|
|
|
{ Program to demonstrate the CSeg function. }
|
|
|
|
var W : word;
|
|
|
|
begin
|
|
W:=CSeg; {W:=0, provided for compatibility,
|
|
FPC is 32 bit.}
|
|
end.
|