ident-mash 0.1.0

Mash idents together inside macro_rules!
Documentation
1
2
3
4
5
6
7
8
use ident_mash::mash;

mash!(name = MY + _ + STATIC + _NAME => static $name: usize = 42;);

#[test]
fn main() {
	assert_eq!(MY_STATIC_NAME, 42)
}