fpc/docs/sysutex/ex74.pp
1999-05-30 21:21:47 +00:00

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.