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.

I was running:

my @encList = Encode::encodings(':all');

Your (much better) version:

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

  • Comment on Re^2: Encode - List ALL available encodings (upgrade)