Overview
Writes a long (4 bytes) number to the specified memory address. Range: -2147483648 to +2147483647.
(number) Address of Memory.
(number) Number of Long.
Nothing.
mem = Memory.Allocate(1024) Memory.PutLong(mem, 65894) Dialog.Message("", Memory.GetLong(mem)) -- Print 65894 Memory.Free(mem)
See also: Related Actions