Procedural macro "str" to const [ u8; _ ]
Procedural macro proc_strarray::make_array
creates const u8 array from str literal.
Usage
// This code will create const array of u8 named STRU from content of "stru" str literal.
use make_array;
make_array!;
// check if newly created array have length 4 and first character is 's'
assert_eq!;
assert_eq!;