Skip to content

Instantly share code, notes, and snippets.

@bhelyer
Created March 9, 2010 23:21
Show Gist options
  • Save bhelyer/327277 to your computer and use it in GitHub Desktop.
Save bhelyer/327277 to your computer and use it in GitHub Desktop.
int global;
void main()
{
int i = 0;
int j = 5;
int k = i + j;
k = k * 2;
return k;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment