##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September, 2016 # Modified: 2016-10-03/22:37-0400 ##+ # # args.icn, Demonstrate the args arity function # procedure main() write("args for main: ", args(main)) write("args for subproc: ", args(subproc)) subproc() coex := create subproc() write("args for co-expression (subproc): ", args(coex)) @coex end procedure subproc(a:string:"Hello", b:integer:5) write(a, ", ", b) end