1 macro_rules! define_struct {
2     ($rounds:expr) => (
3         struct Struct {
4             sk: [u32; $rounds + 1]
5         }
6         )
7 }
8 
9 define_struct!(2);
10