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

6 lines
65 B
OCaml
Raw Permalink Normal View History

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