(String[] args)
| 1 | public class Main { |
| 2 | public static void main(String[] args) { |
| 3 | System.out.println("Hello world!"); |
| 4 | for(int i = 1; i <= 4; i++){ |
| 5 | for(int j = 1; j <= 4-i; j++){ |
| 6 | System.out.print(" "); |
| 7 | } |
| 8 | for(int k = 1; k <= 2 * i - 1; k++){ |
| 9 | System.out.print("*"); |
| 10 | } |
| 11 | System.out.println(); |
| 12 | } |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected