loop-code 0.5.2

Code repeating macro
Documentation
1
2
3
4
5
6
7
use loop_code::repeat;

fn main() {
    repeat!(16 {
        println!("Hello world");
    });
}