On Sun, Jan 27, 2002 at 12:49:47 PM, Bill -OSX- Jones wrote:

> On Sunday, January 27, 2002, at 12:47  PM, Bill -OSX- Jones wrote:
> 
> >But ... $@ Does like being assigned to  :(
> >
> 
> That should be *DOES NOT* like being assigned to...

zackse@ice ~$ perl -e '$@=q(foobar);die'
foobar  ...propagated at -e line 1.

zackse@ahumado:~/perl/perlscripts/golf/fwp.january.2002$ cat 1
#!/usr/bin/perl
$@='all your base...';
warn;
die;

zackse@ahumado:~/perl/perlscripts/golf/fwp.january.2002$ perl 1
all your base...        ...caught at 1 line 3.
all your base...        ...caught       ...propagated at 1 line 4.


-E

Reply via email to