Is there any way to get an empty string recognized as a word in a macro? The idea is a macro (call it formTypes) with words like: (empty) EZ A such that a loop like
Code:
foreach formType of local formTypes {
        di "1040`formType'"
}
will produce
Code:
1040
1040EZ
1040A
There are probably workarounds in most use cases if this is not possible (like adding the prefix "1040" to each of the words), but if it's possible it would be nice to cut down a little on redundant typing.