Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
src
/
tools
/
miri
/
tests
/
pass
/
format.rs
blob: 053cce36130c72714281adf86b06626aaee5eddf [
file
]
fn
main
()
{
println
!(
"Hello {}"
,
13
);
println
!(
"{:0<width$}"
,
"hello"
,
width
=
10
);
}