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.