mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-28 05:01:34 +01:00
10 lines
175 B
ObjectPascal
10 lines
175 B
ObjectPascal
Program Example68;
|
|
|
|
{ Program to demonstrate the Octal function. }
|
|
|
|
begin
|
|
Writeln('Mode 777 : ', &777);
|
|
Writeln('Mode 644 : ', &544);
|
|
Writeln('Mode 755 : ', &755);
|
|
end.
|