http://www.perlmonks.org?node_id=863720


in reply to Re^2: Strictly nested sub warnings
in thread Strictly nested sub warnings

Especially if you're joining lots of vars with short strings, concatenation can leave you drowning in symbols.

Replies are listed 'Best First'.
Re^4: Strictly nested sub warnings
by FloydATC (Deacon) on Oct 06, 2010 at 05:04 UTC
    For short variables I agree 100%.

    For more complex variables, I tend to go back to concatenation to make sure I get what I want.

    print "Guess what you get: $hashref->{$lookup1[$i]}->{$lookup2[$i]}\n" +;

    Also, with syntax highlighting, punctuation actually makes the code more readable than interpolation IMO.

    -- Time flies when you don't know what you're doing