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

6 lines
65 B
Text
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)
;;