modldt;pubuseldt::hello;/// first testfunc for my ldt class
/// ‘‘‘
/// use ldt::hello;
/// let result = hello("rusty");
/// assert_eq!(result,"Hello from LDT to rusty");
/// ‘‘‘
#[cfg(test)]modtests{usesuper::*;#[test]fntest_with_name(){let name ="rusty";let expected ="Hello from LDT to rusty";assert_eq!(hello(name),expected);}}