10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-30 00:44:28 +02:00
quantum_package/ocaml/test_elements.ml

7 lines
162 B
OCaml
Raw Normal View History

2014-08-13 17:54:32 +02:00
let test_module () =
let atom = Elements.of_string "Cobalt" in
Printf.printf "%s %d\n" (Elements.to_string atom) (Elements.charge atom)
;;
test_module ();;