##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: August, 2016 # Modified: 2016-10-03/22:48-0400 ##+ # # default-return-value.icn, default expression for return, is &null # procedure main() write(type(subproc())) end # this actually returns &null, not void/nothing procedure subproc() return end