JavaCompilerCore/examples/achim/Modifier2.jav
2013-10-18 13:33:46 +02:00

30 lines
319 B
Java
Executable File

package examples.achim;
import java.lang.Math;
class Modifier2{
void test2(){
int s;
i;
i = 42;
s;
s = "string";
d;
}
public test3(){
text;
text = "text";
return text;
}
public test31(){
text;
text = "text";
}
static test4(){
buchstabe;
buchstabe = 'a';
return buchstabe;
}
}