docs(rustlang): Rust Hello World instructions

This commit is contained in:
Duncan Browne
2022-03-28 07:44:03 +00:00
committed by AJ ONeal
parent 1c20c6d8ce
commit 6c250ad0dc
+2 -1
View File
@@ -39,7 +39,8 @@ cargo install ripgrep
```bash
cargo new hello --bin
pushd ./hello/
cargo build --release
./hello
./target/release/hello
> "Hello, world!"
```