How can I write a Perl module with UTF-8 in its name and filename? My current try yields "Can't locate Täst.pm in @INC", but the file does exist. I'm on Windows, and haven't tried this on Linux yet.
test.pl
:
use strict;
use warnings;
use utf8;
use Täst;
Täst.pm
:
package Täst;
use utf8;
Update: My current work-around it so use Tast
(ASCII) and put package Täst
(Unicode) in Tast.pm
(ASCII). It's confusing, though.