4 lines
90 B
Raku
4 lines
90 B
Raku
|
|
for #`(each element in) my @array {
|
||
|
|
say #`(or print element) $_ #`(with a newline);
|
||
|
|
}
|