RUST

Systems Programming with Safety

Created: 2010 Creator: Graydon Hoare Typing: Static

// 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

// RESOURCES