##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-12/01:11-0400 ##+ # # open.icn, demonstrate the open function # procedure main() f := open(&file) | stop("Cannot open ", &file, " for read") every write(!f) close(f) end