Skip to content

Instantly share code, notes, and snippets.

@joebew42
Last active February 7, 2024 15:46
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save joebew42/a144946b6e86493d17591d246d1dc349 to your computer and use it in GitHub Desktop.

Some info about Rust

RUST came out from Firefox to solve problem related to: performance and security.

Why Rust is "faster" compared to C++, C or other compiled language?

  • Similar to these languages
  • Strong Type System
  • Rust compiler uses LLVM suite: Rust compiles to LLVM bytecode and then to assembly language
  • You can write less code compared to other programming language

Why Rust is more "secure" compared to C++, C or other compiled language?

  • Very well defined type system
  • You are not going to handle memory by hand
  • There is no garbage collection

Why choose Rust?

  • The community is very open
  • The low level tool is good
  • The build tool is good

Who is using Rust?

Documentation/Screencast/Examples

Some interesting topics

Project to contribute in

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment