devela 0.27.0

A development layer of coherence.
Documentation
// devela::lang::prog
//
#![doc = crate::_DOC_LANG_PROG!()] // public
#![doc = crate::_doc!(modules: crate::lang; prog: ffi)] // dsl, ir
#![doc = crate::_doc!(flat:"lang")]
#![doc = crate::_doc!(extends: ffi)]
//!
//! > Languages that describe computation, behavior, and execution.
//

mod dsl; // embedded or domain-specific languages
pub mod ffi; // foreign language interfaces
// mod ir; // Intermediate representations
// mod script; // Command and scripting languages
// mod template; // Template and substitution languages

crate::structural_mods! { // _mods, _pub_mods, _crate_internals
    _mods {
        pub use super::{
            dsl::_all::*,
            // ir::_all::*,
            // script::_all::*,
            // template::_all::*,
        };
    }
    _pub_mods {
        pub use super::{
            ffi::_all::*,
        };
    }
    _crate_internals {
        pub(crate) use super::ffi::_crate_internals::*;
    }
}