I'm writing a stata program in a .do file, and would like to provide default values if the user does not supply some parameters. To do so, I'd like to check if a macro is undefined. I've come up with a hacky way to do this:
*** For a local macro with the name value:
if `value'1 != 1 {
...do stuff
}
But I'd like to know if there is a idiomatic way to do this.