in reply to Re^2: print list, comma not working?
in thread print list, comma not working?

So what you should take from this is always use strictures (use strict; use warnings; - see The strictures, according to Seuss).


True laziness is hard work

Replies are listed 'Best First'.
Re^4: print list, comma not working?
by fzellinger (Acolyte) on Jan 13, 2010 at 04:51 UTC
    Ah. I have been using 'use strict;' in all my code, but I never used 'use warnings;' because I figured that 'strict' was 'stricter' than warnings and that I had everything covered. I will now also 'use warnings;'