example-lib 0.1.0

example-lib
Documentation
pub fn hello() {
    println!("hello a")
}

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

    #[test]
    fn test_hello() {
        hello();
    }
}