Introduction
Functions
Misc
Introduction/events-begin
Begin Event
Begin event can be useful when you want something to execute when
the object gets spawned for the first time.
Example:
begin::
{
gm_stock->console_log("1")
gm_stock->console_log("2")
gm_stock->console_log("3")
}
Example above uses move (::) operator to execute everything after begin:: event.