mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
import { func2 } from "./module_cyclic2.js";
|
|
|
|
export function func1(x, y) {
|
|
if (x <= 0)
|
|
return y;
|
|
return func2(x - 1, y + "1");
|
|
}
|