Does Zorro support nested If statements of the form:

if (something is true) {
do something;
else if (something else is true) {
do something else;
else do something else;
}
}

It seems to me that intuitively this should work, but I can't seem to get the syntax to work.