(view source code of sorttime.rex as plain text)
/* Display time in HHMMSS */
sorthour = right( time( "H" ), 2, "0" )
sortmins = right( time( "M" ) - ( 60 * time( "H" ) ), 2, "0" )
sortsecs = right( time( "S" ) - ( 60 * time( "M" ) ), 2, "0" )
sorttime = sorthour||sortmins||sortsecs
say sorttime
page last modified: 2024-04-16; loaded in 0.0074 seconds