False.st
changeset 54 06dbdeeed4f9
parent 38 454b1b94a48e
child 88 81dacba7a63a
equal deleted inserted replaced
53:77ed1ef5c018 54:06dbdeeed4f9
    22 COPYRIGHT (c) 1988 by Claus Gittinger
    22 COPYRIGHT (c) 1988 by Claus Gittinger
    23               All Rights Reserved
    23               All Rights Reserved
    24 
    24 
    25 Class False has only one instance, false, representing logical falsehood.
    25 Class False has only one instance, false, representing logical falsehood.
    26 
    26 
    27 $Header: /cvs/stx/stx/libbasic/False.st,v 1.5 1994-01-09 21:16:00 claus Exp $
    27 $Header: /cvs/stx/stx/libbasic/False.st,v 1.6 1994-02-25 12:57:42 claus Exp $
    28 '!
    28 '!
    29 
    29 
    30 !False methodsFor:'logical operations'!
    30 !False methodsFor:'logical operations'!
    31 
    31 
    32 & aBoolean
    32 & aBoolean
   112 ! !
   112 ! !
   113 
   113 
   114 !False methodsFor: 'printing'!
   114 !False methodsFor: 'printing'!
   115 
   115 
   116 printString
   116 printString
   117     "return a Character sequence representing the receiver"
   117     "return character sequence representing the receiver"
   118 
   118 
   119     ^ 'false'
   119     ^ 'false'
   120 ! !
   120 ! !
   121 
   121 
   122 !False methodsFor: 'binary storage'!
   122 !False methodsFor: 'binary storage'!