Hellows

        I'm writing a module and, as all modules should be, I'm using strict. So, I
need to 'declare' every variable. What I want, is to do something like:

        $varname = "myvar";
        @$varname = ('a','b','c');

        This sets @myvar as I want, but how can I do this with strict??

        my $varname = "myvar";
        my @$varname = ('a','b','c');

        This does not works.

        Thanks for all the help...

                Alberto
-- 
 | Alberto Manuel Brandão Simões |
 | [EMAIL PROTECTED] |
 | http://numexp.sourceforge.net |

Reply via email to