Cheddar Documentation
Search…
Cheddar Documentation
Introduction
Syntax
Literals
Mathematics
Variables
Functions
Default Operators
What Is
Instance-of
Actually Is
Control Flow
Standard Library
Developing
Powered By
GitBook
Actually Is
Syntax
1
a actually is b
Copied!
Explanation
Determines whether
a
or
b
refer to the same
object
.
Examples
1
1 actually is 1 // false
2
3
let a := 1
4
let b := a
5
6
a actually is b // true
Copied!
Previous
Instance-of
Next
Control Flow
Last modified
1yr ago
Copy link
Contents
Syntax
Explanation
Examples