Skip to content

Instantly share code, notes, and snippets.

@jimmyhmiller
Created August 14, 2014 20:45
Show Gist options
  • Save jimmyhmiller/4603e92f4af620938364 to your computer and use it in GitHub Desktop.
Save jimmyhmiller/4603e92f4af620938364 to your computer and use it in GitHub Desktop.
class Program
{
static int x = 0;
static int f()
{
x = x + 10;
return 1;
}
public static void Main()
{
x += f();
System.Console.WriteLine(x);
}
}
@jimmyhmiller
Copy link
Author

var x = 5;
x = x + (x += 5)
System.Console.WriteLine(x);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment