mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 08:19:25 +02:00
10 lines
132 B
ObjectPascal
10 lines
132 B
ObjectPascal
Program Example44;
|
|
|
|
{ Program to demonstrate the Octal function. }
|
|
|
|
Uses linux;
|
|
|
|
begin
|
|
Writeln ('Octal(666) : ',octal(666));
|
|
end.
|