(String[] args)
| 1 | class HelloWorld { |
| 2 | public static void main(String[] args) { |
| 3 | int money = 2000; |
| 4 | System.out.println(money); |
| 5 | money = 5000; |
| 6 | System.out.println(money); |
| 7 | } |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected