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

  1. class inverse:fraction(d)
  2. initially
  3.   self.n := 1
  4. end
  5.  
  6. procedure main()
  7.   x := inverse(2)
  8.   y := fraction(3,4)
  9.   z := x$times(y)
  10.   write("The decimal equivalent of ",z$asString(),
  11.     " is ",trim(z$asReal(),'0'))
  12. end
  13.