Along these lines, can someone explain to me why

  use strict 'vars';
  my $name = 'data';
  print foreach  @$name;

produces no error, when

  use strict 'vars';
  print foreach  @data;

does?

Rob




--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to