Search⌘ K
AI Features

Mutability

Explore how mutability works in ReasonML by learning to use the ref() wrapper for mutable let bindings. Understand how to assign and access values within these wrappers using := and ^ operators, enhancing your control over variable states.

We'll cover the following...

We’ve already observed how normal let binding variables are immutable. One approach was to redefine the binding with a new value.

However, there is an actual way to make let bindings mutable!

The

...