4 lines
71 B
Raku
4 lines
71 B
Raku
|
|
for <a b c> Z <A B C> Z 1, 2, 3 -> ($x, $y, $z) {
|
||
|
|
say $x, $y, $z;
|
||
|
|
}
|