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

6 lines
65 B
Text
Raw Permalink Normal View History

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