fpc/docs/linuxex/ex44.pp
2004-07-18 11:57:11 +00:00

10 lines
213 B
ObjectPascal

Program Example44;
{ Program to demonstrate the Octal function. }
begin
// Writeln ('Octal(666) : ',octal(666));
Writeln (' &666 : ',&666); // 1.9.x+ functionality, octal is not necessary anymore
end.