[perl #75030] [PATCH] Lexical persistence & autoprinting for the REPL

2011-09-19 Thread Will Coleda via RT
Closing ticket as resolved - I don't think we applied the original patch, but we have REPL autoprinting for some time now. Thanks for the submission! -- Will "Coke" Coleda

Re: [perl #75030] [PATCH] Lexical persistence & autoprinting for the REPL

2010-05-11 Thread Stefan O'Rear
On Tue, May 11, 2010 at 08:25:47AM -0700, Patrick R. Michaud via RT wrote: > 1. I don't like that it modifies the parameters of !UNIT_START. I see three alternatives - clone UNIT_START (DRY), inline UNIT_START in the PAST (DRY), and unify !RESUME_HERE with !YOU_ARE_HERE (makes modules run in the

[perl #75030] [PATCH] Lexical persistence & autoprinting for the REPL

2010-05-11 Thread via RT
# New Ticket Created by Stefan O'Rear # Please include the string: [perl #75030] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75030 > > my $x = 10 10 > my $y = 1 1 > while $x { $y *= $x-- } > $y 3628800 > [*] ^10 0 > [*]