Rust basics part 3 - Writing an working game
So last part we saw how to get an input from the user and give an output . Today we are going to write an actual game.
Guessing game
So this is a simple guessing game written in rust.
use std::io;
fn main() {
println!("Guess the age of timmy!(He...
dishaan195.hashnode.dev2 min read