How to deal with nil values in variables and concatenation them
I have some checkboxes that represents options for executing an external program.
some pseudo code:
if box == checked
strOption1 = aa
if box 2 == checked
strOption2 == bb
strCommand = "software " .. strOption1 .. " " .. strOption2
------
But if the strOption(s) are empty (nil) I get an error.
I could the write some if else but that would make it more complicated.
