Overview
Writes an integer (4 bytes on 32 bits processors, 8 bytes on 64 bits processors) number to the specified memory address. Range On 32Bit: -2147483648 to +2147483647. Range On 64Bit: -9223372036854775808 to +9223372036854775807.
(number) Address of Memory.
(number) Number of Int.
Nothing.
mem = Memory.Allocate(1024) Memory.PutInt(mem, 65894) Dialog.Message("", Memory.GetInt(mem)) -- Print 65894 Memory.Free(mem)
See also: Related Actions