5 lines
84 B
Raku
5 lines
84 B
Raku
|
|
@array = (1, 2, 3);
|
|
$array[5] = "Here is a new element!";
|
|
print "$array[5]\n";
|