in reply to Using qw

Hi,

I hav jus made few changes to your code ..

use strict; use warnings; my @days; @days = qw/Monday Tuesday Wednesday Thursday Friday Saturday Sunday/; print "@days","\n";
This will print as you wanted ...

Thank you

A perl Script without 'strict' is like a House without Roof; Both are not Safe;