##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September 2016 # Modified: 2016-10-03/22:53-0400 ##+ # # get.icn, demonstrate the queue get from head function # link lists procedure main() L := [] put(L, 1, 2, 3) item := get(L) write(item) write(limage(L)) end