()
| 59 | } |
| 60 | |
| 61 | fn main() { |
| 62 | let numbers = vec!["42", "93", "18"]; |
| 63 | let empty = vec![]; |
| 64 | let strings = vec!["tofu", "93", "18"]; |
| 65 | |
| 66 | print(double_first(numbers)); |
| 67 | print(double_first(empty)); |
| 68 | print(double_first(strings)); |
| 69 | } |
| 70 |
nothing calls this directly
no test coverage detected