Initial commit

This commit is contained in:
2022-10-18 15:44:29 +03:00
commit 3cfda09ced
18 changed files with 1065 additions and 0 deletions

17
example/example_test.go Normal file
View File

@@ -0,0 +1,17 @@
package example_test
import (
"github.com/derfenix/goi18n/example"
)
func ExampleBasic() {
example.Basic()
// Output:
// Тест теста
// Test of the beer
// всего пара пауков
// Использован русский язык, кириллица
// just pair of spiders
// Использован английский язык, латиница
}