Building a Simple CLI To-Do App in Rust Using Cargo
Originally published on PEAKIQ
Getting Started
To follow along, ensure you have Rust installed on your system. You can install Rust using Rustup.
Once installed, create a new Rust project:
cargo new rust_todo
cd rust_todo
Now, open the main.rs file...
peakiq.hashnode.dev2 min read