in reply to Re^2: Invalid argument
in thread Invalid argument
It's because you're not passing @_.
You could fix this with:
but it's really better practice to chomp the variables on input, and assign them to actual variable names, leaving @_ to its better purpose of the default argument list.handlefix(@_);
|
---|