Help language development. Donate to The Perl Foundation

sortuk zef:andmizyk last updated on 2022-06-09

README.md
## NAME

sortuk - is script and library for sorting strings by Ukrainian alphabet.

## INSTALLATION

```sh
zef install sortuk
```

## USAGE

```sh
bin/sortuk пʼять сім девʼять
bin/sortuk resources/test_file.txt
```

or as library:

```raku
use SortUk;

say sortuk <один два пʼять>;
# OUTPUT: (два один пʼять)

my @data = 'resources/test_file.txt'.IO.lines;
.put for sortuk @data;
```

## AUTHOR

Andrij Mizyk

## LICENSE

Copyright (C) 2022 Andrij Mizyk

This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.