> For the complete documentation index, see [llms.txt](https://docs.cheddar.vihan.org/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheddar.vihan.org/docs/default-operators/actually-is.md).

# 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
```
