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