fpc/tests/webtbs/tw0879.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

12 lines
183 B
ObjectPascal

PROGRAM TEST;
TYPE
ta = ARRAY[3..8] OF word;
VAR
aa : ^ta;
i : word;
BEGIN
NEW(aa);
FOR i:=LOW(aa^) TO HIGH(aa^) DO
aa^[i]:=0;
END.