RosettaCodeData/Task/Topic-variable/Raku/topic-variable.raku
2023-07-01 13:44:08 -04:00

5 lines
135 B
Raku

$_ = 'Outside';
for <3 5 7 10> {
print $_;
.³.map: { say join "\t", '', $_, .², .sqrt, .log(2), OUTER::<$_>, UNIT::<$_> }
}