constitution 1.0.0

Constitution of the United States.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use constitution::*;

/// 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.
fn main() {
    // Iterating over `ARTICLES` yields a reference to each string slice.
    for line in ARTICLES.iter() {
        println!("{}\n", line);
    }

    // Iterating over `AMENDMENTS` yields a reference to each string slice.
    for line in AMENDMENTS.iter() {
        println!("{}\n", line);
    }
}