in reply to Re: Encode - List ALL available encodings (upgrade)
in thread Encode - List ALL available encodings [SOLVED]
Thanks for your reply. I've found the cause of the difference.
my @encList = Encode::encodings(':all');
my @encList = Encode->encodings(':all');
I hadn't noticed that I had to use a method, and not a simple module sub. Thanks, and may your camel never croak
|
|---|