Loading...
Loading...
Rust programming with ownership, borrowing, lifetimes, and zero-cost abstractions. Use for .rs files.
npx skill4agent add g1joshi/agent-skills rustfn main() {
println!("Hello, World!");
let mut x = 5; // mutable
x = 6;
let y = 10; // immutable by default
}Result<T, E>Option<T>cargo clippymatchunsafeunwrap()