mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 10:39:29 +02:00
17 lines
242 B
ObjectPascal
17 lines
242 B
ObjectPascal
{ Old file: tbs0012.pp }
|
|
{ tests type conversation byte(a>b) OK 0.9.9 (FK) }
|
|
|
|
var
|
|
a,b : longint;
|
|
|
|
begin
|
|
a:=1;
|
|
b:=2;
|
|
if byte(a>b)=byte(a<b) then
|
|
begin
|
|
writeln('Ohhhh');
|
|
Halt(1);
|
|
end;
|
|
end.
|
|
|