5 lines
81 B
Plaintext
Raw Normal View History

2017-12-14 21:20:57 +01:00
public class RecursiveMeth{
2017-12-13 13:34:22 +01:00
public Integer test(){
return this.test();
}
}