Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
Last active September 8, 2016 18:10
// Given:
var y = ...;
{
var x = F(y);
G(x);
}
// After
Action action = () => {
var x = F(y);
G(x);
};
action();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment