home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 018.lha / prelude / true.st < prev   
Encoding:
Text File  |  1986-10-19  |  433 b   |  18 lines

  1. Class True :Boolean
  2. [
  3.         ifTrue: trueAlternativeBlock ifFalse: falseAlternativeBlock
  4.                 ^ trueAlternativeBlock value
  5.  
  6. !       ifFalse: falseAlternativeBlock ifTrue: trueAlternativeBlock
  7.                 ^ trueAlternativeBlock value
  8.  
  9. !       ifTrue: trueAlternativeBlock
  10.                 ^ trueAlternativeBlock value
  11.  
  12. !       ifFalse: falseAlternativeBlock
  13.                 ^ nil
  14.  
  15. |       not
  16.                 ^ false
  17. ]
  18.