repetitive 0.3.2

Macro for generating repetitive code
Documentation
1
2
3
4
5
6
7
use repetitive::repetitive;

repetitive! {
    const _: () = assert!(@(include("tests/include_helper_dir/include_helper.txt")) == 19);
    const _: () = assert!(@(-include("tests/include_helper_dir/include_helper.txt")) == -19);
    const _: () = assert!(@(include("tests/include_helper_dir/include_helper.txt") * 2) == 38);
}