in reply to Re: (tye)Re: Swapping object variables
in thread Swapping object variables
One would think so, eh? But I actually tested that before I posted:
produces#!/usr/bin/perl -w use strict; my %h; $h{okay} .= "Hello"; # No warning (for me, at least) warn "----\n"; $h{warn}= $h{warn} . "Hello"; # Gives a warning
But perhaps this isn't true in some older versions of Perl (I only tested v5.6.0). - tye (but my friends call me "Tye")---- Use of uninitialized value in concatenation (.) at line 6.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (tye)Re2: Swapping object variables
by blakem (Monsignor) on Jan 25, 2002 at 01:04 UTC |