mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 17:28:16 +02:00
11 lines
128 B
ObjectPascal
11 lines
128 B
ObjectPascal
const
|
|
w = $5000;
|
|
begin
|
|
writeln(hi(w));
|
|
if hi(w)<>$50 then
|
|
begin
|
|
writeln('Error!');
|
|
halt(1);
|
|
end;
|
|
end.
|