JavaTXCompilerInJavaTX/examples/achim/Modifier2.jav

30 lines
319 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
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;
}
}