getting started
git clone https://github.com/ItoYo16u/rust-template <dirname>
cd <dirname>
Install toolchain
cargo check
# or cargo build
run
# build and run
cargo run
# clean
cargo clean
run in specific channel
rustup run nightly cargo <command>
fmt
rustup component add rustfmt
cargo fmt
lint
rustup component add clippy