| 5 | **************************************************************************** */ |
| 6 | |
| 7 | public class HelloGoodbye { |
| 8 | public static void main(String[] args) { |
| 9 | System.out.println("Hello " + args[0] + " and " + args[1] + "."); |
| 10 | System.out.println("Goodbye " + args[1] + " and " + args[0] + "."); |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected