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

Reply via email to