If (else)


Conditional structure (II)



    (if logical_expression
        do_statement_1
        else_do_statement_2
    )



Examples

    (if (= 1 2) "yes" "no")

"no"

    (test_if_else 0)

    (test_if_else 1)

This website has been archived and is no longer maintained.