On 6/26/06, Sarah Berry <berry.sarah at gmail.com> wrote:
> So instead, I would want to do something like this?
> my %conds = {
> my %cnt = {
>
The { ... } construct creates a hash reference, which should be stored
in a scalar. So if you want things to be simple and readable, it
should say:
my $conds = { ... }