mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
20 lines
271 B
ObjectPascal
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.
|