devela 0.28.0

A development substrate of coherence.
Documentation
// devela::lang::prog::script::shell::word
//
//! Shell word parsing and quoting.
//

#[cfg(test)]
mod tests;

mod error;
mod lex;
mod quote;

crate::structural_mods! { // _mods
    _mods {
        pub use super::{
            error::*,
            lex::*,
            quote::*,
        };
    }
}