|
|
| XP is just a number | |
| PerlMonks |
Re: Geo::IPfree moduleby Anonymous Monk |
| on Jul 03, 2012 at 14:58 UTC ( #979728=note: print w/ replies, xml ) | Need Help?? |
|
As Tutorials: Basic debugging checklist teaches, use B::Deparse to see how perl interprets your code You're missing a semicolon here
Next error is in my $geo = Geo::IPfree->new([$db]); You're probably confused by the Optional Arguments Notation ( Backus–Naur Form ) new( [$db] ) means that you can use new( ) or new( $db ) The word-documentation for new explains this.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||