Subject: | [Feature request] Do not quit on error |
First of all, thanks for such a great module.
Have couple of notices:
1) the 'perlthon' name is not intuitive. I had to refer the
documentation several times, before I managed to remember it. Perhaps an
aliased script 'perl-shell' can be included in distribution?
2) The shell quit on fatal errors, which is inconvenient. Perhaps it can
just output the error at continue the work? Example of such session:
catalyst@symbie-dev:~/Workspace/EclipseWorkspace/JavaScript/task-extjs$
perlthon
Perl 5.10.0 (Fri Jun 26 18:43:11 UTC 2009) [linux rothera
2.6.24-23-server #1 smp wed apr 1 22:22:14 utc 2009 i686 gnulinux ]
Type "help;", "copyright;", or "license;" for more information.
Show quoted text
>>> my @data = ( 3.01, 3.02, '3.1.01', '3.1.0_01' );
Show quoted text>>> print @data;
3.013.023.1.013.1.0_01
Show quoted text>>> print sort { $a->[0] cmp $b->[0] } @data;
Can't use string ("3.01") as an ARRAY ref while "strict refs" in use at
(eval 30) line 3.
catalyst@symbie-dev:~/Workspace/EclipseWorkspace/JavaScript/task-extjs$
Thanks again, Nickolay