blob: 98ed35c4f9a2164a5bd80899d800b1118e22eb17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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"
);
}
|