mirror of
https://github.com/wez/wezterm.git
synced 2024-12-25 22:33:52 +03:00
4 lines
95 B
Rust
4 lines
95 B
Rust
macro_rules! debug {
|
|
($($arg:tt)*) => (if cfg!(debug_assertions) { println!($($arg)*) })
|
|
}
|