in reply to Error:Can't locate object method "Open"

Perl's functions are case-sensitive. It's spelled open(). The other function is spelled close().

Jeff japhy Pinyan, P.L., P.M., P.O.D, X.S.: Perl, regex, and perl hacker
How can we ever be the sold short or the cheated, we who for every service have long ago been overpaid? ~~ Meister Eckhart
  • Comment on Re: Error:Can't locate object method "Open"

Replies are listed 'Best First'.
Re^2: Error:Can't locate object method "Open"
by Herkum (Parson) on Jun 09, 2006 at 13:16 UTC

    The rule is perl syntax is case-sensitive.

    When it comes to native perl-functions, they are all lower-case. It makes infinitely more sense to me than that horrible camel-hump BS that Java insists on...

Re^2: Error:Can't locate object method "Open"
by nsheth (Initiate) on Jun 09, 2006 at 12:42 UTC
    Thanks a lot....that was fast :)