Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.22 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.22 KB

Pascal-P5

P5 Pascal compiler for Delphi.

Pascal-P5 complies with the requirements of level 0 of ISO/IEC 7185.

image image image image

Original version is here:

Build

You can use Delphi Community Edition to compile.

Enhancement

External file

program Test(input, output, TMP='TEMP.TXT');
var
  TMP: text;
begin
  Writeln('Hello, world.');
  Rewrite(TMP);
  Writeln(TMP, 'Hello, world.');
end.

Command-line parameter

PCOM [+T | -T] [+L | -L] [+D | -D] [+C | -C] [Pascal file (*.pas)]
PINT [Intermediate file (*.p5)]