9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-19 11:02:04 +02:00
qp2/ocaml/tests/test_elements.ml
2019-01-25 11:39:31 +01:00

7 lines
178 B
OCaml

let test_module () =
let atom = Element.of_string "Cobalt" in
Printf.printf "%s %d\n" (Element.to_string atom) (Charge.to_int (Element.to_charge atom))
;;
test_module ();;