home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / misc / benchmarks / gc / CNoLfO / point.e < prev    next >
Encoding:
Text File  |  1999-06-05  |  129 b   |  16 lines

  1. class POINT
  2.  
  3. creation make
  4.  
  5. feature
  6.  
  7.    x, y: DOUBLE;
  8.  
  9.    make(vx, vy: DOUBLE) is
  10.       do
  11.      x := vx;
  12.      y := vy;
  13.       end;
  14.  
  15. end
  16.