1use mendeleev::Element;
23/// Prints the electronic configuration for each element in the standard notation.
4fn main() {
5for element in Element::list() {
6println!(
7"{}:\t{}",
8 element.symbol(),
9 element.electronic_configuration()
10 );
11 }
12}