in reply to Re: references to subroutines
in thread references to subroutines

Except if that's a method call, that won't work, because you're not passing the name of the class as the first parameter. Try this:
my %menu = ( n => sub { Subs->new }, );

-- Randal L. Schwartz, Perl hacker