I can't seem to find the answer to this anywhere.
Does anyone know of you can perform multiple tasks in a 1-line if statement.
To clarify:
 Code:
If 1 = 1 ? "success" Else ? "Failure" EndIf

Works as a one line statement but what you you want to perform more if the statement is true for instance have another ? "success" in it ?
 Code:
If 1 = 1 ? "success" ? "success2" Else ? "Failure" EndIf


Any help would be appreciated.