Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Lambda #1

Open
pjc0247 opened this issue Apr 13, 2019 · 0 comments
Open

[WIP] Lambda #1

pjc0247 opened this issue Apr 13, 2019 · 0 comments

Comments

@pjc0247
Copy link
Owner

pjc0247 commented Apr 13, 2019

Supprting a lambda expression has high priority on task queue.
Current status is partially implemented.

Below code works

list.Any((int x) => { return x > 2; });

And these are won't work

// implicit lambda parameter
list.Any((x) => { return x > 2; });

// lambda with arrow body
list.Any((int x) => x > 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant