We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Basic questions about arrays.
You can define arrays of fixed length, then assign to individual elements.
#!/usr/bin/env perl6 my @array[10]; @array[0] = 7; @array[3] = 'string'; say @array;
Output:
$ perl6 array.pl6 [7 (Any) (Any) string (Any) (Any) (Any) (Any) (Any) (Any)]