Skip to content

mikeradka/rust-by-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust By Example (rust-by-example)

An exercise in learning some rust via The Rust Programming Language book and Rust by Example.

General Rust/Cargo Notes

  • To create a new rust project: cargo new <name>
  • To check compilation: cargo check
  • To build: cargo build
  • To run: cargo run
  • To generate project docs and open in a browser: cargo doc --open
  • To update packages: cargo update
  • To get more information about a compilation error: rustc --explain E0282 (replace with the error no)

About

Rust By Example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages