Convert seconds to compound duration: Difference between revisions

Content added Content deleted
(Added Arturo implementation)
Line 618: Line 618:


=={{header|Arturo}}==
=={{header|Arturo}}==
{{trans|Nim}}

<lang rebol>Units: [" wk", " d", " hr", " min", " sec"]
<lang rebol>Units: [" wk", " d", " hr", " min", " sec"]
Quantities: @[7 * 24 * 60 * 60, 24 * 60 * 60, 60 * 60, 60, 1]
Quantities: @[7 * 24 * 60 * 60, 24 * 60 * 60, 60 * 60, 60, 1]