RosettaCodeData/Task/Compile-time-calculation/OCaml/compile-time-calculation-1.ocaml

5 lines
69 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
let days_to_seconds n =
let conv = 24 * 60 * 60 in
(n * conv)
;;