On approximately 10/24/2004 4:06 PM, came the following characters from the keyboard of MJG:

For those of you that are big fans of this, I see value in using it.

How would I set this situation up:

$List{$key}=...code

Do I do this

my $List = ''; my $key = '';

This doesn't seem to make sense though.

Thanks

MJG

# Perhaps what you are looking for is this?

use strict;
use warnings;

my ( $key, %List );  # This declares the variables

$List{$key}=...code

--
Glenn -- http://nevcal.com/
===========================
The best part about procrastination is that you are never bored,
because you have all kinds of things that you should be doing.
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to