Word translation game where the user is presented with words in one language and are asked to provide translation in another language. The application reads word pairs from a JSON file, presents a random word to the user, and asks for the translation.
demo.MP4
- Cargo. I suggest installing rustup and installing stable branch of rust but you can also install plain cargo
1.Clone this repo
git clone https://github.com/antonsakhanovych/Words-Learner.git
2.Create your words.json file in the format:
[
{
"from": "Hello",
"to": "Merhaba"
},
{
"from": "How are you?",
"to": "Nasılsın?"
}
]
3.Compile
cargo build --release
4.Start the game
./target/release/words_learner words.json