mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 18:11:38 +00:00
Merge pull request #3885 from MonliH/patch-1
[raku/en] Added missing function call
This commit is contained in:
commit
1599a765c5
@ -285,7 +285,7 @@ sub as-many($head, *@rest) {
|
|||||||
@rest.join(' / ') ~ " !";
|
@rest.join(' / ') ~ " !";
|
||||||
}
|
}
|
||||||
say as-many('Happy', 'Happy', 'Birthday'); # OUTPUT: «Happy / Birthday !»
|
say as-many('Happy', 'Happy', 'Birthday'); # OUTPUT: «Happy / Birthday !»
|
||||||
say 'Happy', ['Happy', 'Birthday'], 'Day'; # OUTPUT: «Happy / Birthday / Day !»
|
say as-many('Happy', ['Happy', 'Birthday'], 'Day'); # OUTPUT: «Happy / Birthday / Day !»
|
||||||
|
|
||||||
# Note that the splat (the *) did not consume the parameter before it.
|
# Note that the splat (the *) did not consume the parameter before it.
|
||||||
|
|
||||||
@ -769,7 +769,7 @@ sub unpack_array( @array [$fst, $snd] ) {
|
|||||||
# (^ remember the `[]` to interpolate the array)
|
# (^ remember the `[]` to interpolate the array)
|
||||||
}
|
}
|
||||||
unpack_array(@tail);
|
unpack_array(@tail);
|
||||||
# OUTPUT: «My first is 3, my second is 3! All in all, I'm 2 3.»
|
# OUTPUT: «My first is 2, my second is 3! All in all, I'm 2 3.»
|
||||||
|
|
||||||
# If you're not using the array itself, you can also keep it anonymous,
|
# If you're not using the array itself, you can also keep it anonymous,
|
||||||
# much like a scalar:
|
# much like a scalar:
|
||||||
|
Loading…
Reference in New Issue
Block a user