We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9420953 + 12e5fa4 commit b38cde5Copy full SHA for b38cde5
doc/Language/functions.pod6
@@ -970,7 +970,7 @@ a 1; # OUTPUT: «Int 1Any 2»
970
X<|dispatch,samewith>
971
972
C<samewith> calls current candidate again with arguments provided by users
973
-and returns return value of the new instance of current candidate.
+and returns the return value of the new instance of current candidate.
974
975
=begin code
976
proto a(|) {*}
@@ -980,7 +980,7 @@ multi a(Int $x) {
980
return $x * samewith($x-1);
981
}
982
983
-say (a 10); # OUTPUT: «36288002»
+say (a 10); # OUTPUT: «36288000»
984
=end code
985
986
X<|dispatch,nextcallee>
0 commit comments