Skip to content

Instantly share code, notes, and snippets.

@christmoore
Created June 27, 2015 20:15
Show Gist options
  • Save christmoore/0a39c7a463f24e8ebece to your computer and use it in GitHub Desktop.
Save christmoore/0a39c7a463f24e8ebece to your computer and use it in GitHub Desktop.
int x = 2**2;
if(x > 4)
{
System.out.println("Does this work?");
}
else if(x % 2 == 1)
{
System.out.println("Does this work?");
}
else
{
System.out.println("Does this work?");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment