store#

Tied-hash write: always croaks; %Config is read-only.

תקציר#

$Config{archname} = 'foo';   # dies

מה מוחזר#

Nothing. The call raises Config is read-only and unwinds to the nearest eval.

דוגמאות#

eval { $Config{archname} = 'bogus' };
print $@;                      # Config is read-only

מקרי קצה#

  • The croak fires regardless of the key or value; there is no per-key override.

הבדלים מן ה-upstream#

Fully compatible with upstream.