5 lines
81 B
Plaintext
Raw Normal View History

2023-01-10 14:22:05 +01:00
public class RecursiveMeth{
public Integer test(){
return this.test();
}
}