Skip to content

Instantly share code, notes, and snippets.

@christmoore
Created June 27, 2015 20:11
Show Gist options
  • Save christmoore/d657bc18471be68a7a43 to your computer and use it in GitHub Desktop.
Save christmoore/d657bc18471be68a7a43 to your computer and use it in GitHub Desktop.
int i = 1;
if (i < 2)
{
System.out.println("This is an if statement that works");
}
int i = 4;
if (i < 2)
{
System.out.println("This is an if statement that doesn't works");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment