5 lines
81 B
Plaintext
Raw Normal View History

public class RecursiveMeth{
public Integer test(){
return this.test();
}
}