in reply to Re^2: Resolving Prototype mismatch
in thread Resolving Prototype mismatch

Not this:

use URI::URL;

This instead:

use URI::URL ();
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^4: Resolving Prototype mismatch
by marky1124 (Novice) on Aug 09, 2012 at 11:59 UTC

    Brilliant, thank you, that seems to have done it perfectly

    Can you tell me what you did there please?

    Cheers,

    Mark

        Thank you.