Cheddar Documentation
Search
⌃
K
Cheddar Documentation
Search
⌃
K
Introduction
Syntax
Literals
Mathematics
Variables
Functions
Default Operators
What Is
Instance-of
Actually Is
Control Flow
Standard Library
Developing
Powered By
GitBook
Comment on page
Actually Is
Syntax
a actually is b
Explanation
Determines whether
a
or
b
refer to the same
object
.
Examples
1 actually is 1 // false
let a := 1
let b := a
a actually is b // true
Previous
Instance-of
Next
Control Flow
Last modified
3yr ago