Skip to content

simonefinelli/Rust-Notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rust-Notes

Notes of the Rust programming language.

Starting with Rust

Create a new Project

cargo new [PROJECT_NAME]

Build the Project

After modified some .rs files in src directory, we can build our application with the following command:

cargo build

By default, the build in done in debug mode, to compile the code with all optimization use instead:

cargo build --release

Launch the Application

cargo run

About

Notes of the Rust programming language.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages