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

5 lines
69 B
OCaml
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let days_to_seconds n =
let conv = 24 * 60 * 60 in
(n * conv)
;;