##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-14/13:11-0400 ##+ # # table.icn, demonstrate creation of table function # procedure main() # set initial keys and values T := table(1, "a", 2, "b", c, "3") write(T[1]) # create with default value T := table(42) write(T[1]) end