()
| 102 | } |
| 103 | |
| 104 | fn main() { |
| 105 | let p = make_person(8); |
| 106 | println!("{}", p.name()); |
| 107 | let css = SuperCompSciStudent("Bert".to_string()); |
| 108 | println!("{}", comp_sci_student_greeting(&css)); |
| 109 | println!("{}", comp_sci(&css)); |
| 110 | let prog = RustProgrammer("Robert".to_string()); |
| 111 | //let prog = ArtificialProgrammer("AI".to_string()); |
| 112 | println!("{}", comp_sci_vs_programmer(&css, &prog)); |
| 113 | } |
nothing calls this directly
no test coverage detected