Hi
In Sweden we don't have any swedish forum.I have looked the man page but don't understand them where they talk about unicoding.Can someone please help to make this script writing the apropriate letters?
#!/usr/bin/perl -w
use encoding "utf8";
use strict;
my @a=("a"..."ö");
for (@a ) {
print $_\n;
}