Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- program new;
- var
- i,t:Int32;
- a:array of Int32;
- begin
- {$R+}
- SetLength(a, 35000000);
- t := GetTickCount();
- for i:=0 to High(a) do a[i];
- WriteLn(GetTickCount() - t);
- {$R-}
- SetLength(a, 35000000);
- t := GetTickCount();
- for i:=0 to High(a) do a[i];
- WriteLn(GetTickCount() - t);
- end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement