in reply to Undefined Subroutine error

Look at the line the error message is referring to: my @fields = $csv-fields();. The right hand side of that is parsed as "$csv minus fields()", I assume that should be $csv->fields(); (the arrow operator calling the fields method on the $csv object).

Replies are listed 'Best First'.
Re^2: Undefined Subroutine error
by pdahal (Acolyte) on May 25, 2017 at 09:44 UTC
    thanks a lot. It works