Introduction/operators-move

Move Operator

Move operator is useful when you want code to execute after an event.


Example:

tick::gm_stock->console_log("Hello World")

Example above uses move (::) operator to move the execution from tick

event that executes every tick to console_log function that prints out "Hello World"

to the console.

documentation

Outdated! Updates coming soon.