8 lines
87 B
Rust
8 lines
87 B
Rust
use indoc::printdoc;
|
|
|
|
struct NoDisplay;
|
|
|
|
fn main() {
|
|
printdoc!("{}", NoDisplay);
|
|
}
|