InterviewSolution
Saved Bookmarks
| 1. |
What is “cargo new” purposed for? |
|
Answer» 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 |
|