home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v941.tgz / icon.v941src.tar / icon.v941src / ipl / packs / idol / indextst.iol < prev    next >
Text File  |  2000-07-29  |  135b  |  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.