Rebol Programming/not

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

NOT value 

DESCRIPTION:[edit | edit source]

Returns the logic complement.

NOT is a native value.

ARGUMENTS:[edit | edit source]

  • value -- (Only FALSE and NONE return TRUE) (Type: any)

SOURCE CODE[edit | edit source]

not: native[
    "Returns the logic complement." 
    value "(Only FALSE and NONE return TRUE)"
]