##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September, 2016 # Modified: 2016-10-03/22:47-0400 ##+ # # ctime.icn, Demonstrate the ctime function # procedure main() # convert epoch start to a formatted time write(ctime(0)) # convert time of run to formatted time write(ctime(&now)) # two days in the future (relative to time of run) write(ctime(&now + 48 * 60 * 60)) end