10 lines
89 B
Plaintext
Raw Normal View History

2014-04-23 17:59:59 +02:00
class Test2 {
public meth(){
if(true) {
return(1);
}else{
return(2);
}
}
}