##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September 2016 # Modified: 2016-10-03/23:00-0400 ##+ # # method.icn, demonstrate a class method definition # class sample() method sample() write("in sample of sample") end end procedure main() instance := sample() instance.sample() end