FutureBasic Logo

<<    Index    >> FutureBasic

logical not '!'   operator



Syntax
!operand

Description
The exclamation mark operator, '!', simply reverses the meaning of the operand.

Example
long a = 12

if ( !a )
print @"false"
else
print @"true"
end if
 

See also
not