13 lines
96 B
Plaintext
13 lines
96 B
Plaintext
|
class TestIfStmt {
|
||
|
|
||
|
methode(){
|
||
|
var;
|
||
|
if(true){
|
||
|
var=this;
|
||
|
}else{
|
||
|
var=this;
|
||
|
}
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
}
|