* fix range check error with cardinal-longint

This commit is contained in:
peter 2004-03-29 14:28:40 +00:00
parent dc67ea9d52
commit 739a37c29d

View File

@ -25,8 +25,8 @@
begin
//init the array
for i:=0 to 299
do werte[i]:=Random(5)-2;
for i:=0 to 299 do
werte[i]:=random(5);
//and do something with it
writeln(erwwert(werte):6:5);