in reply to Code Generation in Perl

In applm.pl, you say $SIG{__WARN__} = sub { warn @_ unless $_[0] =~ /Use of uninitialized value/ }; Why not just this? no warnings 'uninitialized'; Your program needs pod badly, there is no documentation.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re^2: Code Generation in Perl
by nferraz (Monk) on Jun 17, 2004 at 17:43 UTC
    Yup, I must improve documentation and code style. I just wanted to release the code as soon as possible! ("Release soon, release often", they say)

    Expect a revision in a few minutes.