Skip to content

Instantly share code, notes, and snippets.

@khatchad
Created June 23, 2015 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khatchad/8b4eef1c2465831b696c to your computer and use it in GitHub Desktop.
Save khatchad/8b4eef1c2465831b696c to your computer and use it in GitHub Desktop.
public class Enum_test {
public static final int a = 4;
public static final double b = 5.5;
public void compare(){
boolean check = b > a;
System.out.println(check);
}
public class InnerClass{
public static final int innerVariable = 1;
public static final double inV = 3.3;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment