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