fpc/tests/webtbs/tw9299.pp
2007-07-22 22:56:35 +00:00

20 lines
271 B
ObjectPascal

{$mode objfpc}
{$R+}
function GetShiftedCard(const c: Cardinal): Cardinal;
begin
Result := c shl 24;
end;
function GetShiftedByte(const c: Byte): Cardinal;
begin
Result := c shl 24;
end;
begin
WriteLn(GetShiftedCard(200));
WriteLn(GetShiftedByte(200));
end.