caery 0.1.0

Core helpers for Lios-like runtime orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]

/// Placeholder function for the initial `caery` crate.
pub fn hello() -> &'static str {
    "hello from caery"
}

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

    #[test]
    fn hello_works() {
        assert_eq!(hello(), "hello from caery");
    }
}