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
program SimpleMath;
var
  a, b, c: integer;
begin
  a := 10;
  b := 5;
  c := a + b;
  c := c * 2;
  c := c - 3;
end.