Meta Project

The Unofficial Meta Documentation

IS-SAME

Summary

IS-SAME tests if values are the same

Category

Categoryname

Usage

IS-SAME value1 value2

Arguments

value1 - first value in the comparison

value2 - second value in the comparison

Refinements

This method has no refinements

Description

IS-SAME tests if values are the same

Example Code

Descriptions and

this: "this"
that: "that"
alsothis: "this"
if not is-same this that [write/line "This is not that!"]
if is-same this alsothis [write/line "This is alsothis!"]

Result

This is not that!
This is alsothis!

Related

IS-NONE  
IS-EMPTY  

Back to the Meta Methods Reference index