Skip to content

Instantly share code, notes, and snippets.

@nddrylliog
Created February 20, 2013 06:29
Show Gist options
  • Save nddrylliog/4993412 to your computer and use it in GitHub Desktop.
Save nddrylliog/4993412 to your computer and use it in GitHub Desktop.
int temp;
if (condition) {
temp = 42;
} else {
temp = 16;
}
blah(temp);
blah(if (condition) {
42
} else {
16
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment