##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September, 2016 # Modified: 2016-10-03/22:48-0400 ##+ # # delay.icn, demontrate the millisecond delay function # procedure main() # retrieve a microsecond clock value (millionths) write(gettimeofday().usec) # pause for 10 (or more) milliseconds (thousandths) delay(10) write(gettimeofday().usec) end