Compare if value is bigger or equal

package ArithmeticOperations;

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

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

Result will be: true