Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 256 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 256 Bytes

a refresher: Rust in VSCode

Check installation

rustc --version
rustup update

scaffold code

cargo new hello_world

cd hello_world
code .

build and run

cargo build
cargo run