mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
7 lines
162 B
OCaml
7 lines
162 B
OCaml
let test_module () =
|
|
let atom = Element.of_string "Cobalt" in
|
|
Printf.printf "%s %d\n" (Element.to_string atom) (Element.to_charge atom)
|
|
;;
|
|
|
|
test_module ();;
|