home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / vici_102 / examples / sqrttest.e < prev    next >
Text File  |  1993-01-12  |  203b  |  15 lines

  1. class SqrtTest
  2. feature
  3.     sobj: sqrt;
  4.     
  5.     create is
  6.     do
  7.         sobj.create;
  8.         
  9.         io.putint(sobj.sqrt(1));
  10.         io.putint(sobj.sqrt(2));
  11.         io.putint(sobj.sqrt(4));
  12.         io.putint(sobj.sqrt(8));
  13.     end;
  14. end
  15.