mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 03:53:45 +02:00
10 lines
213 B
ObjectPascal
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.
|