interface Inter{
void method();
}
class Text{
static Inter function(){
return new Inter(){
public void method(){
System.out.println("run");
}
}
}
}
public class niming {
public static void main(String[] args) {
// TODO Auto-generated method stub
Text.function().method();
}