Hello my friends,
I had 2 questions regarding arrays.
- Is it possible to use negative indexes with arrays or how to get around this problem?
- How to easily initialize arrays like here below or do we have to enumerate each value?
Const
Matrice : Array[-1…1,-1…1] of Integer = ((-1,0,1), (-2,0,2), (-1,0,1));
Thank you.