Re: Question about interpolating version of qw

2007-02-10 Thread Larry Wall
On Sat, Feb 10, 2007 at 09:16:06AM -0500, Joe Gottman wrote: : Does the interpolating version of qw split a string into words before or : after it interpolates? So if I have : my $foo = 'Hello World'; :my @bar = «$foo»; : : does @bar equal ('Hello World') or ('Hello', 'World')? The latter

Question about interpolating version of qw

2007-02-10 Thread Joe Gottman
Does the interpolating version of qw split a string into words before or after it interpolates? So if I have my $foo = 'Hello World'; my @bar = «$foo»; does @bar equal ('Hello World') or ('Hello', 'World')? Joe Gottman