Files
2021-09-17 14:29:49 +00:00

14 lines
237 B
Java

class Demo {
void caller() {
test(1, "hello");
}
void test(int x, String hello) {
if (x > 0) {
System.out.println(hello);
System.out.println(hello);
} else {
System.out.println("hello");
}
}
}