Overview
Writes a character (1 byte) number to the specified memory address. Range: 0 to +255.
(number) Address of Memory.
(number) Number of Char.
Nothing.
mem = Memory.Allocate(1024) Memory.PutChar(mem, 72) Memory.PutChar(mem+1, 105) Dialog.Message("", Memory.GetString(mem, -1, "Ascii")) -- Print Hi Memory.Free(mem)
See also: Related Actions