function main() { return 2 * fib(1) } function fib(n) { return 2 + 1 } console.log(main())