Decorators manipulate how your variables and other features work in the backend.
.data
[lock] ; constructive decorator
; code
[!lock] ; destructive decorator
| Decorator | Description |
|---|---|
[lock] |
This decorator marks variables locked or hidden from threads. |
[volatile] |
This decorator disables the variable caching. |
[transient] |
This decorator marks specific data as transient, so they get deleted from memory in the next code section. |