A simple Russian-to-English dictionary written just for fun
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
dict_go/README.md

22 lines
673 B

## Bidirectional Russian-to-English dictionary
A very simple dictionary that stores words in an SQLite3 database on your hard
drive.
#### What this program is supposed to do
It was supposed to demonstrate that a fairly complete and usable program in Go
can be written in under 2 hours, as this one was.
This is a basic CRUD app that can display a list of words and search
for words irrespectively of context or language.
#### What this program is not supposed to do
* handling StarDict/GoldenDict dictionaries;
* handling lots of definitions;
* whatever else you might expect from a feature-complete dictionary program.
#### License
See [LICENSE.txt](LICENSE.txt).