├── .gitignore ├── LICENSE ├── README ├── in.txt ├── main └── main.go ├── out.txt ├── stemmer.go └── stemmer_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | stemmer 2 | out/ 3 | *.6 4 | _obj 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/README -------------------------------------------------------------------------------- /in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/in.txt -------------------------------------------------------------------------------- /main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/main/main.go -------------------------------------------------------------------------------- /out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/out.txt -------------------------------------------------------------------------------- /stemmer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/stemmer.go -------------------------------------------------------------------------------- /stemmer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agonopol/go-stem/HEAD/stemmer_test.go --------------------------------------------------------------------------------