blob: 053cce36130c72714281adf86b06626aaee5eddf [file] [log] [blame] [edit]
fn main() {
println!("Hello {}", 13);
println!("{:0<width$}", "hello", width = 10);
}