On Thu, 3 Aug 2006 10:29:24 -0500 Eric <[EMAIL PROTECTED]> wrote: > I wouldn't be too concerned. This particular issue is similar to > something like: > > my @x = split; > > You just need to realize that the command doesn't make sense without > an argument. None is given, so it must be using "the current thing" > - whatever that may be in the particular context. Which 99% of the time is a horrible way to code, in my opinion. Being just slightly more specific can turn that guessing game into a easy to understand line of code such as:
my @csv_data = split( /,/, $data_line ); --------------------------------- Frank Wiles <[EMAIL PROTECTED]> http://www.wiles.org --------------------------------- _______________________________________________ kc mailing list [email protected] http://mail.pm.org/mailman/listinfo/kc
