fpc/docs/sysutex/ex64.pp
1999-05-28 19:38:35 +00:00

16 lines
223 B
ObjectPascal

Program Example64;
{ This program demonstrates the BCDToInt function }
Uses sysutils;
Procedure Testit ( L : longint);
begin
Writeln (L,' -> ',BCDToInt(L));
end;
Begin
Testit(10);
Testit(100);
Testit(1000);
End.