Skip to content

Instantly share code, notes, and snippets.

@psychoss
Last active January 15, 2016 12:53
Show Gist options
  • Save psychoss/802284fa5afae3f4541a to your computer and use it in GitHub Desktop.
Save psychoss/802284fa5afae3f4541a to your computer and use it in GitHub Desktop.
Some tricks about the Rust
fn main() {
// Pads string with zeros on the left side if it’s shorter than 3.
println!("{:0>3}",0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment