Documentation

GNU Pascal Compiler
Compiler
GPC
Name
GNU Pascal Compiler
Language
Pascal
Program and version
/bin/sh: 1: gpc: not found
Description
GNU Pascal Compiler
Type
compiler
Flags1
-D_JUDGE_ -DNDEBUG -O2
Flags2
Extension
.pas
Status
Currently not working. This compiler is not in the repositories,

P68688
program solucio;

begin
    writeln('Hello world!');
end.
P57548
program solucio;

var
    a, b: integer;

begin
    read(a, b);
    writeln(a + b);
end.