add rogue submodule and support for compiling, some cleanup
This commit is contained in:
parent
a060b65bb9
commit
3eb51f7d4e
9 changed files with 132 additions and 7 deletions
8
tests/arraytest.pas
Normal file
8
tests/arraytest.pas
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
program arraytest;
|
||||
var arr:array[-5..5] of integer;
|
||||
var s:string[5];
|
||||
begin
|
||||
arr[-5] := 10;
|
||||
arr[5] := 11;
|
||||
writeln(arr[-5], ' ', arr[5]);
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue