Rand Stats

LREP

github:awwaiid

A fun little REPL for perl6 inspired by Pry, nREPL, and others

[!WARNING] This project is abandoned! Please check out the much more recent and maintained REPL. It has the most important and magical feature -- the ability to add a REPL-powered breakpoint to interactively explore from the middle of your program!

Build Status

EXAMPLE

Demo program:

use LREP;

sub hmm {
  my $x = "hello";
  LREP::here;
  say $x;
}

hmm;

Then when you run it you get a prompt. You can look at local vars and change them. "^D" to continue.

> $x
hello
> $x = "bye"
bye
> ^D
bye

TODO / IDEAS