0 votes
in Rust by
What is “cargo new” purposed for?

1 Answer

0 votes
by
The cargo new command is used to create a new project in Rust. Rust users can use below syntax create a sample project using Cargo.

$ cargo new project_name –bin
...