5 lines
81 B
Plaintext
Raw Normal View History

2024-05-02 23:04:07 +02:00
public class RecursiveMeth{
public Integer test(){
return this.test();
}
}