Skip to content

Instantly share code, notes, and snippets.

@poemdexter
Created March 13, 2012 21:01
Show Gist options
  • Save poemdexter/2031546 to your computer and use it in GitHub Desktop.
Save poemdexter/2031546 to your computer and use it in GitHub Desktop.
int f = 5;
public void dan(int x)
{
x = 6;
}
dan(f);
System.out.print(f);
// What do you expect the print to print?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment