##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: November 2016 # Modified: 2016-11-21/12:41-0500 ##+ # # threading-synch.icn, Hello, threads, sychronized with wait # procedure main() Lt := [] every t := !10 do put(Lt, thread write("Hello, world; I am thread: ", t)) every wait(!Lt) write("main: complete") end