Source code
Revision control
Copy as Markdown
Other Tools
import { func2 } from "./module_cyclic2.mjs";
export function func1(x, y) {
if (x <= 0) {
return y;
}
return func2(x - 1, y + "1");
}
import { func2 } from "./module_cyclic2.mjs";
export function func1(x, y) {
if (x <= 0) {
return y;
}
return func2(x - 1, y + "1");
}