forked from github/kensanata.oddmuse
3 lines
61 B
Raku
3 lines
61 B
Raku
@list = (1,2,3,4,5);
|
|
print join(', ', @list[1 .. -1]), "\n";
|