aboutsummaryrefslogtreecommitdiff
path: root/challenge-049/markus-holzer/raku/ch-1.p6
blob: 69827afbacab919633851c8d919e2005c3572b83 (plain)
1
2
3
4
sub MAIN( $n ) 
{
    say (1 .. Inf).map( *.base(2).Str ).first( * %% $n );
}