Rust 01: Introduction to Rust

Taekmin Kim
1 min readOct 7, 2020

Highlights

  • SAFE concurrency
  • performance: as fast as C++ for most things
  • (memory) safety: control of memory layout
  • syntactically similar to C++
  • self-hosting compiler i.g. rustc that uses LLVM
  • https://www.rust-lang.org/

Hello World

fn main() {
println!("Hello World!");
}

and other examples

Projects

--

--