5 lines
81 B
Plaintext
5 lines
81 B
Plaintext
|
public class RecursiveMeth{
|
||
|
public Integer test(){
|
||
|
return this.test();
|
||
|
}
|
||
|
}
|