##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: November 2016 # Modified: 2016-11-25/23:03-0500 ##+ # # Poke.icn, an MS-DOS specific string to memory region copy # # This sample is UNTESTED, which means it counts as broken. # procedure main() s := "Hello, distant past" mem := GetSpace(*s) Poke(mem, s) from := Peek(mem, *s) write(image(from)) FreeSpace(mem) end