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

7 lines
159 B
OCaml
Raw Normal View History

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