Skip to content

Commit

Permalink
Separate angular parens to avoid them being gobbled.
Browse files Browse the repository at this point in the history
Closes #3763
  • Loading branch information
JJ committed Jan 5, 2021
1 parent fe2ce36 commit 3256bb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/syntax.pod6
Original file line number Diff line number Diff line change
Expand Up @@ -1008,8 +1008,8 @@ on a single list of inputs, resulting in a single value.
say [+] <1 2 3 4 5>; # OUTPUT: «15␤»
(((1 + 2) + 3) + 4) + 5 # equivalent expanded version
Wrap an infix operator in C<« »> (or the ASCII equivalent C<<< >>>) to create a
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.
say <1 2 3> «+» <4 5 6> # OUTPUT: «(5 7 9)␤»
Expand Down

0 comments on commit 3256bb0

Please sign in to comment.