##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-09/20:19-0400 ##+ # # methods.icn, demonstrate class/object procedure values of methods list # link fullimag class sample(a,b,c,d) method one() end method two() end end procedure main() # this initial write is an empty list if sample is never instantiated write(fullimage(methods("sample"))) c := sample(1,2,3,4) write(fullimage(methods(c))) end