mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-19 16:58:29 +02:00
10 lines
135 B
ObjectPascal
10 lines
135 B
ObjectPascal
Program Example44;
|
|
|
|
{ Program to demonstrate the Octal function. }
|
|
|
|
Uses oldlinux;
|
|
|
|
begin
|
|
Writeln ('Octal(666) : ',octal(666));
|
|
end.
|