Re: Experimental multi-line REPL branch up for testing

2016-02-08 Thread Parrot Raiser
That sounds like a great idea. On 2/7/16, Rob Hoelz wrote: > Hi Perl 6 users! > > I've developed an experimental branch that introduces multi-line input to > the REPL. What this means is when you > enter this: > > > for ^10 { > > instead of seeing a "Missing block" error, the prompt changes,

Experimental multi-line REPL branch up for testing

2016-02-07 Thread Rob Hoelz
Hi Perl 6 users! I've developed an experimental branch that introduces multi-line input to the REPL. What this means is when you enter this: > for ^10 { instead of seeing a "Missing block" error, the prompt changes, so you can finish the block: > for ^10 { * .say * } You can