Is there any perl simulator to play with like pycrust for python? [closed]
just dig into perl and wondering if there is pycrust for perl.
Devel::REPL is the best. Run re.pl
after installation.
The closest is probably perlconsole
Not exactly, but you can launch the interactive debugger after executing some trivial code by using something like:
perl -d -e 1
which simply drops you into the debugger after executing "1".
There's also http://www.sukria.net/perlconsole.html
精彩评论