Fix me is useful for writing temporary code that will be fixed later. It replaces comments like text //FIXME:Rework error handling or //TODO:Add logging

Unlike comments fix_me is enforced by the compiler.

fixme is a simple macro that lets you write temporary code that WILL NOT build in release mode. - You can still compile debug builds and run test --release without issue. - fixme has no overhead on any release or debug code, instead it provides a compile error if any fix_me code is still in the project at release time.

Simple fix_me hello world

``` //Use on functions fixme::fixme!( fn onlyfalse() -> bool { use fixme::fixme; //Or in functions fixme!( return true; ); } );

fn main() { match only_false() { false => println!("Hello"), _ => {} }
} ```

It is recommended to add it to the dependencies as you are making changes then remove it as you finish your work.

Feature flag unfixedcode will allow you to compile release code even with fixme still in your code base. A very simple macro that lets you write temporary code that WILL NOT build in release mode. You can still run debug and test --release without issue.