Overview
Writes a Int64 (8 bytes) number to the specified memory address. Range: -9223372036854775808 to +9223372036854775807.
(number) Address of Memory.
(string) Number of Int64.
Nothing.
mem = Memory.Allocate(1024) Memory.PutInt64(mem, "9876974526712182279") Dialog.Message("", Memory.GetInt64(mem)) -- Print 9876974526712182279 Memory.Free(mem)
See also: Related Actions