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