constitution 1.0.0

Constitution of the United States.
Documentation
//! ## Thirteenth Amendment
//! ### [Section 1](SECTION1)
//!
//! Neither slavery nor involuntary servitude, except as a punishment for crime whereof the party shall have been duly convicted, shall exist within the United States, or any place subject to their jurisdiction.
//!
//! ### [Section 2](SECTION2)
//!
//! Congress shall have power to enforce this article by appropriate legislation.
//!
use once_cell::sync::Lazy;

/// # Section 1
///
/// Neither slavery nor involuntary servitude, except as a punishment for crime whereof the party shall have been duly convicted, shall exist within the United States, or any place subject to their jurisdiction.
pub static SECTION1: Lazy<&'static str> = Lazy::new(
    || r#"Neither slavery nor involuntary servitude, except as a punishment for crime whereof the party shall have been duly convicted, shall exist within the United States, or any place subject to their jurisdiction."#,
);

/// # Section 2
///
/// Congress shall have power to enforce this article by appropriate legislation.
pub static SECTION2: Lazy<&'static str> = Lazy::new(
    || r#"Congress shall have power to enforce this article by appropriate legislation."#,
);