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
13
14
15
16
17
18
program Hello;
var
  x: integer;
  y: integer;
begin
  x := 42;
  y := x + 1;
  // This is a comment
  if y > 40 then
    x := 100
  else
    x := 200;
  
  while x > 0 do
  begin
    x := x - 1;
  end;
end.