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