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.
1 parent fe2ce36 commit 3256bb0Copy full SHA for 3256bb0
doc/Language/syntax.pod6
@@ -1008,8 +1008,8 @@ on a single list of inputs, resulting in a single value.
1008
say [+] <1 2 3 4 5>; # OUTPUT: «15»
1009
(((1 + 2) + 3) + 4) + 5 # equivalent expanded version
1010
1011
-Wrap an infix operator in C<« »> (or the ASCII equivalent C<<< >>>) to create a
1012
-new hyper operator that works pairwise on two lists.
+Wrap an infix operator in C<« »> (or the ASCII equivalent C< << >> >) to
+create a new hyper operator that works pairwise on two lists.
1013
1014
say <1 2 3> «+» <4 5 6> # OUTPUT: «(5 7 9)»
1015
0 commit comments