RosettaCodeData/Task/Executable-library/Perl-6/executable-library-1.pl6
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
215 B
Raku

module Hailstone {
our sub hailstone($n) is export {
$n, { $_ %% 2 ?? $_ div 2 !! $_ * 3 + 1 } ... 1
}
}
sub MAIN {
say "hailstone(27) = {.[^4]} [...] {.[*-4 .. *-1]}" given Hailstone::hailstone 27;
}