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