summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex81.pp
blob: 28f37bc7ba18e053f26383464c468a83681f8280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Program example81;

{ Program to demonstrate the HexStr function }

Const Value = 45678;

Var I : longint;

begin
  For I:=1 to 10 do
    Writeln (HexStr(Value,I));
end.