Skip to content

Instantly share code, notes, and snippets.

@syoyo
Created September 12, 2008 13:48
Show Gist options
  • Save syoyo/10440 to your computer and use it in GitHub Desktop.
Save syoyo/10440 to your computer and use it in GitHub Desktop.
float a = 2.0f;
float b = 3.0f;
void
func()
{
a = b;
}
int
main()
{
func();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment