10 lines
89 B
Plaintext
10 lines
89 B
Plaintext
|
class Test2 {
|
||
|
public meth(){
|
||
|
if(true) {
|
||
|
return(1);
|
||
|
}else{
|
||
|
return(2);
|
||
|
}
|
||
|
}
|
||
|
}
|