class Lambda3{

Runnable methode(){
	return ()-> System.out.println(this);
}

void methode2(){
	methode().run();
}

}