repetitive 0.2.0

Macro for generating repetitive code
Documentation
use repetitive::repetitive;

repetitive! {
    const _: () = assert!(@(1) == 1);
    const _: () = assert!(@(-1) == -1);

    const _: () = assert!(@(1.0) == 1.0);
    const _: () = assert!(@(-1.0) == -1.0);

    const _: () = assert!(@(true) == true);
    const _: () = assert!(@(false) == false);

    const _: &str = @("1"); // str cmp isnt const
    const _: () = assert!(@('1') == '1');

    const _: () = assert!(@{ 1 } == 1);

    const _: () = assert!(@('ident == 'ident));
    const _: () = assert!(@('ident == ~ident));

    const _: [u8; 3] = @([1, 2, 3]);
}