How can I start an interactive console for Perl, similar to the irb
command for Ruby or python
for Python?
Perl – How to start an interactive console for Perl
consoleinteractiveperlread-eval-print-loop
Related Question
- C# – How to get the application’s path in a .NET console application
- C# – How to update the current line in a C# Windows Console App
- Python – How to save a Python interactive session
- Perl – How to fix a locale setting warning from Perl
- Python – How to load a file into the python console
- Node.js – How to change node.js’s console font color
- Git – How to color the Git console
Best Solution
You can use the perl debugger on a trivial program, like so:
Alternatively there's Alexis Sukrieh's Perl Console application, but I haven't used it.