Maybe a stupid question but I couldn't find an answer to it. In other languages it is possible to declare an array and immediately give it a value, e.g.
DIM Array(10) = (1,2,3,4,5,6,7,8,9)
This is not possible in Basic4PPC? I have to give every entry a single line?
array(0) = 1
array(1) = 2
array(2) = 3
etc. etc. ?
thnx
Marc