JavaPatternMatching/examples/hoti/Test2.jav

9 lines
88 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class Test2 {
public meth(){
if(true) {
return(1);
}else{
return(2);
}
}
}