ct-for
This crate exposes the ct-for!() macro, which can be used to repeat code n times with a substitution.
For example:
let c = 17;
ct_for!;
expands to:
let c = 17;
println!;
println!;
println!;
println!;
The ct_for!() macro can also be nested.
There really isn't much more to it.