##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September 2016 # Modified: 2016-10-03/22:53-0400 ##+ # # gettimeofday.icn, retrieve the second and microsecond clock values # procedure main() R := gettimeofday() write(R.sec," seconds since the Unix epoch") write(R.usec, " microsecond counter") write(ctime(R.sec)) end