##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-12-25/22:19-0500 ##+ # # cofail.icn, demonstrate cofail, transmit failure to a co-expression # procedure main() ce := create 1 to 4 write(@ce) write(@ce) cofail(ce) # this will cause a runtime error now, the co-expression empty write(@ce) end