- or download this
use strict;
use warnings;
...
);
say for @array;
- or download this
1+8i
2+5i
6+4i
- or download this
use strict;
use warnings;
...
my @array = pairmap {cplx($a, $b)} (1, 8, 2, 5, 6, 4);
say for @array;
- or download this
use strict;
use warnings;
...
for ([1,8], [2,5], [6,4]);
say for @array;