Initial commit

This commit is contained in:
2022-06-05 15:16:04 +02:00
commit 9651c57760
90 changed files with 11887 additions and 0 deletions

View File

@ -0,0 +1,9 @@
proc g(a: Boolean, b: Int)
begin
writeb(a);
writei(b)
end;
begin
g(True, 5)
end.