Last active
January 15, 2016 12:53
-
-
Save psychoss/802284fa5afae3f4541a to your computer and use it in GitHub Desktop.
Some tricks about the Rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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