constitution 1.0.0

Constitution of the United States.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # [Sixteenth Amendment](AMENDMENT16)
//!
//! The Congress shall have power to lay and collect taxes on incomes, from whatever source derived, without apportionment among the several States, and without regard to any census or enumeration.
use once_cell::sync::Lazy;

/// # Sixteenth Amendment
///
/// The Congress shall have power to lay and collect taxes on incomes, from whatever source derived, without apportionment among the several States, and without regard to any census or enumeration.
pub static AMENDMENT16: Lazy<&'static str> = Lazy::new(
    || r#"The Congress shall have power to lay and collect taxes on incomes, from whatever source derived, without apportionment among the several States, and without regard to any census or enumeration."#,
);