function ten

Transforms hours:minutes:seconds into decimal notation

Syntax
result = ten(hh , mm, ss)

Arguments
hh:   hours
mm:   minutes
ss:   seconds


Returns
A decimal value with hours as unit

Examples
Transform 1h, 29min, 60 sec to decimal:
   print = ten(1, 29, 60)
    1.5