(String[] args)
| 11 | return result; |
| 12 | } |
| 13 | public static void main(String[] args) { |
| 14 | while(condition()) |
| 15 | System.out.println("Inside 'while'"); |
| 16 | System.out.println("Exited 'while'"); |
| 17 | } |
| 18 | } |
| 19 | /* Output: (First and Last 5 Lines) |
| 20 | true, Inside 'while' |