mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
// double function calls
|
|
function a(x) { return x+2; }
|
|
function b(x) { return a(x)+1; }
|
|
result = a(3)==5 && b(3)==6;
|