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

  1. class indextst()
  2.   method index(y)
  3.     write("index(",y,")")
  4.   end
  5. end
  6.  
  7. procedure main()
  8.   x := indextst()
  9.   x $[ "hello, world" ]
  10. end
  11.