useconstitution::*;/// Prints every line of the Constitution and its amendments.
/// Each line is followed by an empty line so that the output is easier to read.
fnmain(){// Iterating over `ARTICLES` yields a reference to each string slice.
for line inARTICLES.iter(){println!("{}\n", line);}// Iterating over `AMENDMENTS` yields a reference to each string slice.
for line inAMENDMENTS.iter(){println!("{}\n", line);}}