mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
import { func1 } from "./module_cyclic1.js";
|
|
|
|
export function func3(x, y) {
|
|
if (x <= 0)
|
|
return y;
|
|
return func1(x - 1, y + "3");
|
|
}
|