Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
sec = 6000005
|
||||
week = floor(sec/60/60/24/7)
|
||||
if week > 0 see sec
|
||||
see " seconds is " + week + " weeks " ok
|
||||
day = floor(sec/60/60/24) % 7
|
||||
if day > 0 see day
|
||||
see " days " ok
|
||||
hour = floor(sec/60/60) % 24
|
||||
if hour > 0 see hour
|
||||
see " hours " ok
|
||||
minute = floor(sec/60) % 60
|
||||
if minute > 0 see minute
|
||||
see " minutes " ok
|
||||
second = sec % 60
|
||||
if second > 0 see second
|
||||
see " seconds" + nl ok
|
||||
Loading…
Add table
Add a link
Reference in a new issue