()
| 23 | } |
| 24 | |
| 25 | fn main() { |
| 26 | let numbers = vec!["42", "93", "18"]; |
| 27 | let empty = vec![]; |
| 28 | let strings = vec!["tofu", "93", "18"]; |
| 29 | |
| 30 | print(double_first(numbers)); |
| 31 | print(double_first(empty)); |
| 32 | print(double_first(strings)); |
| 33 | } |
nothing calls this directly
no test coverage detected