Check of the value is bigger

package ArithmeticOperations;

public class BiggerThan {
	void start() {
		boolean result = (0 > 0);
	}

	public static void main(String[] args) {
		new BiggerThan().start();
	}
}

Result will be: false