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;
	}
}