7 lines
126 B
Rust
7 lines
126 B
Rust
|
// compile-flags: -Zmiri-seed=
|
||
|
|
||
|
fn main() {
|
||
|
println!("Hello {}", 13);
|
||
|
println!("{:0<width$}", "hello", width = 10);
|
||
|
}
|