mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 14:49:27 +02:00
15 lines
231 B
ObjectPascal
15 lines
231 B
ObjectPascal
Program Example74;
|
|
|
|
{ This program demonstrates the IntToStr function }
|
|
|
|
Uses sysutils;
|
|
|
|
Var I : longint;
|
|
|
|
Begin
|
|
For I:=0 to 31 do
|
|
begin
|
|
Writeln (IntToStr(1 shl I));
|
|
Writeln (IntToStr(15 shl I));
|
|
end;
|
|
End. |