Complex.st
branchjv
changeset 17865 598963c6ff8e
parent 17847 62aa54f44969
child 17869 9610c6c94e71
equal deleted inserted replaced
17864:e6010e48defb 17865:598963c6ff8e
    15 
    15 
    16  This is an additional goody-class, which is NOT covered by the
    16  This is an additional goody-class, which is NOT covered by the
    17  ST/X license. It has been packaged with the ST/X distribution to
    17  ST/X license. It has been packaged with the ST/X distribution to
    18  make your live easier instead. NO WARRANTY.
    18  make your live easier instead. NO WARRANTY.
    19 "
    19 "
    20 
       
    21 "{ Package: 'stx:libbasic' }"
    20 "{ Package: 'stx:libbasic' }"
    22 
    21 
    23 ArithmeticValue subclass:#Complex
    22 ArithmeticValue subclass:#Complex
    24 	instanceVariableNames:'real imaginary'
    23 	instanceVariableNames:'real imaginary'
    25 	classVariableNames:'ComplexOne ComplexZero'
    24 	classVariableNames:'ComplexOne ComplexZero'
   762 ! !
   761 ! !
   763 
   762 
   764 !Complex class methodsFor:'documentation'!
   763 !Complex class methodsFor:'documentation'!
   765 
   764 
   766 version
   765 version
   767     ^ '$Id: Complex.st 10665 2011-08-10 14:59:08Z vranyj1 $'
   766     ^ '$Id: Complex.st 10695 2011-09-28 19:07:49Z vranyj1 $'
   768 ! !
   767 !
       
   768 
       
   769 version_SVN
       
   770     ^ '$Id: Complex.st 10695 2011-09-28 19:07:49Z vranyj1 $'
       
   771 ! !