[perl #131898] Issue Installing DBIish

2017-08-15 Thread via RT
# New Ticket Created by Brian Chrzanowski # Please include the string: [perl #131898] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131898 > Hello All, I was told on #perl6's irc channel on irc.freenode.net to put this in a

[perl #131900] [BUG] REPL issue defining new operator with Euro symbol

2017-08-15 Thread via RT
# New Ticket Created by Patrick Tonnerre # Please include the string: [perl #131900] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131900 > Hi, context is : MBP running macOS Sierra 10.12.6 RakudoStar dmg installed This is R

Re: [perl #131900] [BUG] REPL issue defining new operator with Euro symbol

2017-08-15 Thread Elizabeth Mattijsen
This appears to be forgetfulness of the REPL from one input to the next. If you put it on the same line, it *does* work: > sub postfix:<€> (Int $n) {2*$n}; say 42€ 84 So this boils down to a much more generic issue, for which we already have tickets I believe. > On 15 Aug 2017, at 14:25, Patr

Re: [perl #131900] [BUG] REPL issue defining new operator with Euro symbol

2017-08-15 Thread Elizabeth Mattijsen via RT
This appears to be forgetfulness of the REPL from one input to the next. If you put it on the same line, it *does* work: > sub postfix:<€> (Int $n) {2*$n}; say 42€ 84 So this boils down to a much more generic issue, for which we already have tickets I believe. > On 15 Aug 2017, at 14:25, Patr