##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-08/13:38-0400 ##+ # # kill.icn, send signal to PID # procedure main() write("send signal to kill current process") kill(getpid(), "SIGKILL") write("won't get here") end