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