Rebol Programming/same?

USAGE:Edit

SAME? value1 value2 

DESCRIPTION:Edit

Returns TRUE if the values are identical.

SAME? is an action value.

ARGUMENTSEdit

  • value1 -- (Type: any)
  • value2 -- (Type: any)

SOURCE CODEEdit

same?: native[
    "Returns TRUE if the values are identical." 
    value1 
    value2
]