##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-13/16:19-0400 ##+ # # sort.icn, sort a structure # link fullimag procedure main() T := table() insert(T, "3", "x", "2", "y", "1", "z") write(fullimage(sort(T, 1))) write(fullimage(sort(T, 2))) write(fullimage(sort(T, 3))) write(fullimage(sort(T, 4))) end