What does "(.1..10.)" Mean in an array declaration?

Nick Hodges mentioned in an article that is still compiling:

var
  WeirdLookingArray: array(.1..10.) of string;

What's the point "." at the beginning and end?

+3
source share
2 answers

(.and .)are alternative recording methods [and ]respectively.

You can also write (*and *)instead of {and }.

+13
source

They are called digraph s. Also described in the documentation .

+8
source

All Articles