Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1014 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 1014 Bytes

politeness-macro

crates.io

Aren't we all too rude to computers? Isn't it time to bring a bit more politeness into our programming? Shouldn't we be a bit nicer to rustc?

Well, now we can be! Introducing polite!, the macro that makes you say please.

Using polite! is simple, simply put valid Rust code into a polite block and watch it not compile because it's too rude. To get your code to compile again, just say please! Inserting please into your code will get rustc to compile it again, but don't do it too much or it's gonna think you're too polite!

Why?

I'm the same person that did this. What do you mean why.

Code example

use politeness_macro::polite;

fn main() {
    polite! {
        // println!("hello, world"); // DOES NOT COMPILE

        please println!("hello, world"); // does compile!
    }
}