Hello everyone,
As you can tell from this question I am Very New to this stuff.
In the language reference on page Slices my understanding is:
a=a[..] 'copy all elements of a[] "need clarification here"
Am I to understand that the (variable a) is different than the array with the same name? If so then I understand.
a=a[..200] 'resize a[] to 200 elements "need clarification here"
The instructions on this page also say:
a=a[..50] 'extract first 50 elements of a[]
Am I to understand that a[..some number] could be either an extraction or a resize? If so please explain.
As you can tell from this question I am Very New to this stuff.
In the language reference on page Slices my understanding is:
a=a[..] 'copy all elements of a[] "need clarification here"
Am I to understand that the (variable a) is different than the array with the same name? If so then I understand.
a=a[..200] 'resize a[] to 200 elements "need clarification here"
The instructions on this page also say:
a=a[..50] 'extract first 50 elements of a[]
Am I to understand that a[..some number] could be either an extraction or a resize? If so please explain.