Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 188 Bytes

File metadata and controls

11 lines (9 loc) · 188 Bytes

Run Rust Scripts

Compile + run in one command

rustc -O myscript.rs && ./myscript

Compile to a binary

rustc --crate-type bin -C opt-level=3 myscript.rs -o mybinary