Compare of the value is smaller

package ArithmeticOperations;

public class SmallerThan {
	void start() {
		boolean result = (0 < 0);
	}

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

Result will be: false