Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
195 views
in Technique[技术] by (71.8m points)

sub appends Nil to the end in Raku

my sub e($r) { printf("%d, ", $_) for 1..$r}
say e(5);

returns 1, 2, 3, 4, 5, Nil that is, the sub and/or say consistently adds a Nil to the end.

I first tried it using rakudo version 2020.02. I've tried now using the latest version 2020.12.1 and that Nil is still there. How to get rid of it?

question from:https://stackoverflow.com/questions/65646377/sub-appends-nil-to-the-end-in-raku

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Nil is the return value of the sub e.

You either want

my sub e($r) { printf("%d, ", $_) for 1..$r}
e(5);

or

my sub e($r) { map { sprintf("%d, ", $_) }, 1..$r }
.say for e(5);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...