RUST
Systems Programming with Safety
// OVERVIEW
Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. It achieves memory safety without garbage collection.
Memory Safety
Ownership system prevents bugs
Zero-Cost Abstractions
High-level features, C performance
Fearless Concurrency
Compile-time thread safety
examples.rs
// USE CASES
Systems
OS kernels, embedded
Web
Actix, Axum, Rocket
CLI Tools
ripgrep, fd, bat
WebAssembly
Browser, WASI