|
|
The optional %else keyword specifies a set of statements to run if the condition is not satisfied.
|
%if <condition> %then
<set of statements for when condition is satisfied>
[%else
<set of statements for when condition is not satisfied>]
%endif
%if %custom "Return Type" == "void" %then
"return;"
%else
"return ReturnValue;"
%endif