index
:
pascal_compiler
master
Small compiler for a subset of pascal
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
check
/
type
/
arrray
/
pass-access.p
blob: a6af0ecfce90b6b6627f9f40a9daa5088fd6a4a4 (
plain
)
1
2
3
4
5
program main
(
input
,
output
);
var a
:
array
[
1
.
.10
]
of integer
;
begin a
[
3
] :=
1
end.