JavaTXCompilerInJavaTX/bin/mycompiler/test/lambda/TestIfStmt.jav

13 lines
96 B
Java
Executable File

class TestIfStmt {
methode(){
var;
if(true){
var=this;
}else{
var=this;
}
return 1;
}
}