blob: e20026b55653131fb70ddf9bae6ae881c82077f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// rustfmt-version: Two
fn main() {
trace!(
"get some longer length in here yes yes {} {}",
"hello",
"world"
);
debug!(
"get some longer length in here yes yes {} {}",
"hello", "world"
);
}
|