30 lines
319 B
Plaintext
30 lines
319 B
Plaintext
|
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;
|
||
|
}
|
||
|
}
|