()
| 28 | } |
| 29 | |
| 30 | fn main() { |
| 31 | let numbers = vec!["42", "93", "18"]; |
| 32 | let empty = vec![]; |
| 33 | let strings = vec!["tofu", "93", "18"]; |
| 34 | |
| 35 | print(double_first(numbers)); |
| 36 | print(double_first(empty)); |
| 37 | print(double_first(strings)); |
| 38 | } |
nothing calls this directly
no test coverage detected