home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 018.lha / examples / check.st < prev    next >
Text File  |  1986-10-19  |  163b  |  16 lines

  1. Class CheckBook
  2. | balance |
  3. [
  4.     new
  5.         balance <- 0
  6. |
  7.     + amount
  8.         balance <- balance + amount.
  9.         ^ balance
  10. |
  11.     - amount
  12.         balance <- balance - amount.
  13.         ^ balance
  14. ]
  15.  
  16.