in reply to Re^2: What does $, = " " do in this code?
in thread What does $, = " " do in this code?

If @alias = qw(a b c);, without $, = " ";, it will print as # abc rather than # a b c. Correct?

What happens when you try it?

  • Comment on Re^3: What does $, = " " do in this code?