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,
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