================================================================================
cargo new rust-playground
================================================================================
touch .gitignore
# Ignore compiled binary files
target/
# Ignore compiled files
*.rs.bk
# Ignore Cargo.lock file
Cargo.lock
# Ignore editor backup files
*~
================================================================================
rustup component add clippy
cargo install cargo-watch
cargo-watch -qc -x run -x clippy