inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
1
2
3
4
5
6
7
8
9
use inline_tweak::*;
use std::time::Duration;

fn main() {
    loop {
        println!("{} {}", tweak!(2.5), tweak!(35));
        std::thread::sleep(Duration::from_millis(500))
    }
}