(String[] args)
| 16 | } |
| 17 | |
| 18 | public static void main(String[] args) { |
| 19 | String[] fruits = {"kiwi", "apple", "papaya", "mango"}; |
| 20 | sortFruits(fruits); |
| 21 | for(String val : fruits){ |
| 22 | System.out.print(val + " "); |
| 23 | } |
| 24 | } |
| 25 | } |
nothing calls this directly
no test coverage detected