##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-08/14:54-0400 ##+ # # list.icn, demonstrate the list creation function # link lists procedure main() L1 := [1,2,3] L2 := list(5, L1) every Lt := !L2 do write(limage(Lt)) delete(L1, 2) every Lt := !L2 do write(limage(Lt)) end