pascal 0.1.4

A modern Pascal compiler with build/intepreter/package manager built with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
program MultiIf;
var
  n: integer;
begin
  n := 10;

  if n >= 1 then
    writeln(n);

  if n >= 2 then
    writeln(n);
end.