295 B
295 B
parents | |
---|---|
|
public class Train {
public static void main(String[] args) {
method(1);
}
public static int method(int number) {
return method(number);
}
}
%% StackOverflowError %%