in reply to Re: 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?