home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OL.LZH / IDOL.LZH / ICTEST.IOL < prev    next >
Text File  |  1991-07-18  |  171b  |  12 lines

  1. class ictester()
  2.   method classmethod()
  3.     write("hello, world")
  4.   end
  5. end
  6.  
  7. procedure main()
  8.   x := ictester()
  9.   x$classmethod()
  10.   ictester_classmethod(x)
  11. end
  12.