Console commands
New project folder
cargo new name
New project in an existing folder
cargo init
Run file from the current directory
cargo run (runs main.rs)
or
./ filename
Go up a level
cd ..
Open VSCode from current dir
code .
Select a result to preview
New project folder
cargo new name
New project in an existing folder
cargo init
Run file from the current directory
cargo run (runs main.rs)
or
./ filename
Go up a level
cd ..
Open VSCode from current dir
code .