rust
Installation
SKILL.md
Rust
A language empowering everyone to build reliable and efficient software.
When to Use
- Systems programming (drivers, OS)
- WebAssembly
- Performance-critical applications
- Command-line tools (great developer experience)
Quick Start
fn main() {
println!("Hello, World!");
let mut x = 5; // mutable
x = 6;