JavaTXCompilerInJavaTX/test/bytecode/IfElseIfStatement.jav

12 lines
128 B
Plaintext
Raw Normal View History

class IfElseIfStatement{
method(flag){
if(flag){
return 0;
}else if(flag){
return 1;
}else{
return 2;
}
}
}