Learning Rust

create todo list app

install rust

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

install and update your gcc

sudo apt update
sudo apt install build-essential

build and run

cargo build
cargo build --release
cargo run