in reply to Accessing HASH pushed into @array ('strict refs' in use error)

G'day sbrothy,

Welcome to the monastery.

There's a number of places in your code where you are making constants look like strings due to the surrounding code.

This is all explained in "constant: CAVEATS" with examples of how to fix "$hash{CONSTANT}" and "CONSTANT => 'value'".

-- Ken

Replies are listed 'Best First'.
Re^2: Accessing HASH pushed into @array ('strict refs' in use error)
by sbrothy (Acolyte) on Jan 09, 2014 at 16:15 UTC
    Thanks. Again the constants was a leftover from my C days. I removed them all and lo and behold it runs just as nice without them. :)