Help for this page

Select Code to Download


  1. or download this
    use locale;
    use POSIX;
    setlocale(LC_ALL, 'lt');
    
  2. or download this
    my @sorttest = qw(ia ib ic ya yb yc);
    for (sort @sorttest) {
        print "$_\n";
    }