13 lines
239 B
Rust
13 lines
239 B
Rust
|
// 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"
|
||
|
);
|
||
|
}
|