Subject: | No languages for Croatia |
According to https://en.wikipedia.org/wiki/Croatia, this program should print 'Croation'. However it prints nothing:
#!/usr/bin/env perl
use Locale::Object::Country;
my $country = Locale::Object::Country->new( code_alpha2 => 'hr' );
my @official = $country->languages_official;
print "$official[0]\n";