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
|
2014-10-26 17:29:11 +01:00
|
|
|
Printf.printf "%s %d\n" (Element.to_string atom) (Charge.to_int (Element.to_charge atom))
|
2014-08-13 17:54:32 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
test_module ();;
|