wdl-format 0.20.1

Formatting of WDL (Workflow Description Language) documents
Documentation
## This is a test WDL file for if-then-else expressions
version 1.0
workflow if_then_else_exprs {
    input {
        Int a
        Int b
        Bool foo
        Bool bar
    }

    Int c = (
        if (a < b)
        then a
        else b
    )

    Int d =
        if (a < b)
        then a
        else b

    Int qaz = if foo then if bar then c else if c==d then c-d else b else c+d

    output {
        Int result = c
        Int other_result = qaz
    }
}