Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set a 13:55
set b 02:15
set a1 [clock scan $a]
set b1 [clock scan $b]
#now both are in internal (POSIX) time
set r1 [expr {$a1+$b1}]
set result [clock format $r1 -format %k:%M]
set a 13:55
set b 02:15
set a1 [clock scan $a]
set b1 [split $b :]
set b2 [expr {[lindex $b1 0]*3600 + [lindex $b1 1]*60 + $a1}]
#now the sum is internal (POSIX) time
set result [clock format $b2 -format %k:%M]