mirror of
https://github.com/espruino/Espruino.git
synced 2026-01-25 14:47:38 +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;
|