in reply to Re^4: RFC: IPerl - Interactive Perl ( read-eval-print loop ) (-de_)
in thread RFC: IPerl - Interactive Perl ( read-eval-print loop )
A good REPL is a powerful, and easy to use tool which is useful above and beyond simple experimentation. The Perl debugger on the other hand does not allow you write code without debugger commands sprinkled within itusing the debugger in this context doesnt require a single debugger command. the x command mentioned in the nodes above helps to print out simple data structures, but that can just as well be accomplished using plain old print statements or (a method I'm fond of) the Data::Dumper module.
Just my $0.02
__________
Systems development is like banging your head against a wall...
It's usually very painful, but if you're persistent, you'll get through it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: RFC: IPerl - Interactive Perl ( read-eval-print loop ) (-de_)
by stvn (Monsignor) on Feb 08, 2007 at 17:46 UTC |