in reply to How to Hash Hashes

Maybe it's a typo, but you're missing an equal sign in your assignment. It should be

my %host = ( $inst, $count => { 'dayofweek' => $dayofweek, 'month' => + $month, 'date' => $date +, 'timing' => $timing, 'year' => $year, 'dpoint' => $dpoint } );

Replies are listed 'Best First'.
Re^2: How to Hash Hashes
by onegative (Scribe) on Nov 30, 2006 at 15:45 UTC
    You're right, I didn't catch that, I guess I was looking to hard for a bigger problem with the syntax...thanks for pointing that out to me...