Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 520 Bytes

File metadata and controls

16 lines (13 loc) · 520 Bytes

Decorators

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.