Hallo,
ich nutze strict und warnings und habe keine Probleme.
Du hast sowas:
$, = $\ = "\n";
my %ip = ();
$ip{foo}{bar} = 2; # Versuch Zuweisung Literal
$ip{foo}{bar}{baz} = {bar => 1}; # Key baz hat eine Referenz als Wert
# Warung:
# Can't use string ("2") as a HASH ref while "strict refs" in use at ...
Die Warnung kommt mit use strict; use warnings;
Es sei denn Du schaltest
no strict "refs";
Was ich nicht für empfehlenswert halte.
Hotti