```rust use debugprint::{debugprint, debugprintln, debugeprint, debug_eprintln};
let x = 5 * 2;
debugprintln!("x = {}", x); debugprint!("x"); debugprint!(" = "); debugprint!("{}", x); debugeprintln!("I'm printing to the Standard Error"); debugeprint!("I'm printing to the Standard Error"); ```
```rust use debugprint::{ debugprint as dprint, debugprintln as dprintln, debugeprint as deprint, debug_eprintln as deprintln, };
let x = 5 * 2;
dprintln!("x = {}", x); dprint!("x"); dprint!(" = "); dprint!("{}", x); deprintln!("I'm printing to the Standard Error"); deprint!("I'm printing to the Standard Error"); ```
Licensed under either of Apache License Version 2.0 or MIT license at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.