in reply to Re: Re: use slack;
in thread use slack;

Says epoptai:
> Can't use string ("\&foo")
That's because your hash has
that => '\&that',
when it should have
that => \&that,

Replies are listed 'Best First'.
Re: Re: use slack;
by chipmunk (Parson) on Dec 20, 2000 at 03:36 UTC
    After some discussion in the ChatterBox, it was revealed that epoptai was actually using qw// to create his hash:
    %hash = qw/ this \&this that \&that /;
    He was suitably abashed at his mistake. :)
      After some confusion it is revealed by Dominus that I fell prey to the cargo cult by cutting and pasting a misquoted hash. I appreciate the test and assure you it won't happen again ;-)