Created
March 22, 2017 20:01
-
-
Save controlflow/d3dc039237d425d0298577fba3fa56c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
What is this? (int x, int y) | |
*/ | |
(int x, int y) => x + y; | |
int M(int x, int y) => x + y; | |
(int x, int y) = (1, 2); | |
foreach ((int x, int y) in xs) { } | |
int M((int x, int y) t) => t.x + t.y; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment