Files
2020-07-07 08:16:42 +00:00

9 lines
141 B
Java

class Test {
void test(){
System.out.println(1 + newMethod());
}
private int newMethod() {
return 2 + 3;
}
}