inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
#[inline_tweak::tweak_fn]
/// test
fn main() {
    loop {
        const C: i32 = 3;
        static V: i32 = 3;
        let v: [f32; 1] = [1.0];
        let test: &str = "hmm";
        let ok: f32 = 5.0f32;
        let underscores: i32 = 1_000;
        let radix: i32 = 0xFF;

        let s = "mui
        linea
        strings!";
        println!("{} {} {} {}", s, ok, underscores, radix);
        std::thread::sleep(std::time::Duration::from_millis(20));
    }
}