4 lines
83 B
Raku
4 lines
83 B
Raku
@array = ("one", "two", "three");
|
|
$variable1 = shift(@array);
|
|
print $variable1;
|