##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-09/20:19-0400 ##+ # # methodnames.icn, demonstrate class/object methodnames # 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(methodnames("sample"))) c := sample(1,2,3,4) write(fullimage(methodnames(c))) end