Conditionals

Dasel currently supports if/elseif/else. E.g.

if (x == "foo") {
    1
} elseif (y == "bar") {
    2 
} else {
    3
}

It's important to note that a conditional statement must result in a value.

Last updated