6 lines
51 B
Bash
6 lines
51 B
Bash
|
#!/bin/sh -eux
|
||
|
|
||
|
cargo new hello
|
||
|
cd hello
|
||
|
cargo run
|