Rust - creating a project
With this, the main function will be in a file called main.rs
$ cargo new hello_cargo
$ cd hello_cargo
With this, the main function will be in a file called lib.rs
cargo new --lib linked-lists
cd linked-lists
With this, the main function will be in a file called main.rs
$ cargo new hello_cargo
$ cd hello_cargo
With this, the main function will be in a file called lib.rs
cargo new --lib linked-lists
cd linked-lists