Closed jvasileff closed 9 years ago
have you updated your language module and compiler? I just tested and got [2,4,6]
Ok @chochos, here's a super reduced version of what still fails:
shared void run() {
Anything echoX(Anything _, Anything x)
=> x;
Anything(Anything) id
= curry(echoX)(null);
print(id([1,2,3])); // prints "1"
}
This code is the same as https://github.com/ceylon/ceylon-js/issues/568, but with
Sequential
instead ofList
: