Nested If StatementsΒΆ

Multiple if statements inside of each other.

example/src/data/example/functions/main.databind

func main
tag load
    var i := 0
    var j := 0
    runif tvar i matches 0
        runif tvar j matches 0
            say i is 0 and j is 0
        else
            say i is 0 and j is not
        end
    end
end