Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 524 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 524 Bytes

Rust Bootcamp

Towards mastering the fundamentals of Rust

Why Rust

  • Built-in multi-threading system
  • Type-system - uncover bugs at compile time
  • module system that simplifies code separation
  • Robust tooling for docs generation, code linting and code auto formatting
  • In summary, Rust maintains a significant balance between speed, safety, concurrency and portability
  • Compilation to machine code is pretty fast
  • Uses ownership for memory management

Primitive/Scalar Data Types

  • Bool
  • Float
  • Integers