##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September 2016 # Modified: 2016-10-03/22:46-0400 ##+ # # create.icn, Demonstrate co-expression create # procedure main() coex := create(1 to 3) write("co-expression now ready to be invoked, at will") write(@coex) write("Do some other computing") write(@coex) write("get last expected result") write(@coex) if v := @coex then write("co-expression has delivered more results than expected") end