REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: not-equal?

not-equal?  value1  value2

Returns TRUE if the values are not equal.

Arguments:

value1

value2

See also:

<>   =   ==   equal?  

Description

String-based datatypes are considered equal when they are identical or differ only by character casing (uppercase = lowercase). Use == or find/match/case to compare strings by casing.

print not-equal? "abc" "abcd"
true
print not-equal? [1 2 4] [1 2 3]
true
print not-equal? 12-sep-98 10:30
true


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin