ldt2_mc 0.1.0

simple LDT class for German Health LDT2 standard (not implemented yet)
Documentation
mod ldt;
pub use ldt::hello;

/// first testfunc for my ldt class
/// ‘‘‘
///  use ldt::hello;
///  let result = hello("rusty");
///  assert_eq!(result,"Hello from LDT to rusty");
/// ‘‘‘

#[cfg(test)]

mod tests {
    use super::*;
    #[test]
    fn test_with_name () {
        let name = "rusty";
        let expected = "Hello from LDT to rusty";
        assert_eq!(hello(name),expected);
    }

}