Espruino/tests/test_arrow_functions_nested2.js
2021-11-03 09:51:21 +00:00

6 lines
98 B
JavaScript

// https://github.com/espruino/Espruino/issues/2067
var a = x=>(y)=>40+x+y
result = a(1)(1)==42