thesis/tex/code/println.rs
2020-05-03 17:20:09 +03:00

4 lines
74 B
Rust

macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}