10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-25 22:52:06 +02:00
QCaml/Nuclei/Charge.ml

15 lines
253 B
OCaml

type t = float
let of_float x = x
let of_int i = float_of_int i
let of_string s = float_of_string s
let to_float x = x
let to_int x = int_of_float x
let to_string x =
if x >= 0. then
Printf.sprintf "+%f" x
else
Printf.sprintf "%f" x