Rev Language Reference


Bool - Datatype for logical variables.

Bool variables can be either `true` or `false` (`TRUE` or `FALSE` also work).

Example

a <- FALSE
if(!a)
    print("a is not true")
# this will print the statement in parentheses