Skip to content

Instantly share code, notes, and snippets.

@controlflow
Created March 22, 2017 20:01
Show Gist options
  • Save controlflow/d3dc039237d425d0298577fba3fa56c5 to your computer and use it in GitHub Desktop.
Save controlflow/d3dc039237d425d0298577fba3fa56c5 to your computer and use it in GitHub Desktop.
/*
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