acropolis 0.1.3

Acropolis OS is a new OS built by Knott Dynamics.
Documentation
//! Acropolis OS is a new OS built by Knott Dynamics.
//!
//! Acropolis OS is a Linux-based operating system concept built around custom
//! solutions from Knott Dynamics and designed as a full custom stack.

/// Returns the crate name.
pub fn name() -> &'static str {
    "acropolis"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn returns_name() {
        assert_eq!(name(), "acropolis");
    }
}