Time.st
changeset 7733 f556d689cf53
parent 7672 46f206594db3
child 7740 5a9d544b8906
equal deleted inserted replaced
7732:2f588f8c8c91 7733:f556d689cf53
   380 !
   380 !
   381 
   381 
   382 seconds
   382 seconds
   383     "return the number of seconds within the minute (i.e. 0..59)"
   383     "return the number of seconds within the minute (i.e. 0..59)"
   384 
   384 
   385     ^ (self getSeconds \\ 3600) \\ 60
   385     ^ self getSeconds \\ 60
   386 
   386 
   387     "
   387     "
   388      Time now seconds
   388      Time now seconds
   389     "
   389     "
   390 !
   390 !
   663 ! !
   663 ! !
   664 
   664 
   665 !Time class methodsFor:'documentation'!
   665 !Time class methodsFor:'documentation'!
   666 
   666 
   667 version
   667 version
   668     ^ '$Header: /cvs/stx/stx/libbasic/Time.st,v 1.67 2003-10-17 09:22:16 stefan Exp $'
   668     ^ '$Header: /cvs/stx/stx/libbasic/Time.st,v 1.68 2003-11-03 16:41:00 stefan Exp $'
   669 ! !
   669 ! !