<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://coderwiki.org/index.php?action=history&amp;feed=atom&amp;title=Greater_than_or_equal_to_operator</id>
	<title>Greater than or equal to operator - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://coderwiki.org/index.php?action=history&amp;feed=atom&amp;title=Greater_than_or_equal_to_operator"/>
	<link rel="alternate" type="text/html" href="http://coderwiki.org/index.php?title=Greater_than_or_equal_to_operator&amp;action=history"/>
	<updated>2026-05-19T03:50:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://coderwiki.org/index.php?title=Greater_than_or_equal_to_operator&amp;diff=40&amp;oldid=prev</id>
		<title>Dylan: new</title>
		<link rel="alternate" type="text/html" href="http://coderwiki.org/index.php?title=Greater_than_or_equal_to_operator&amp;diff=40&amp;oldid=prev"/>
		<updated>2025-08-09T10:32:31Z</updated>

		<summary type="html">&lt;p&gt;new&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;One common [[comparison operator]] is the &amp;#039;&amp;#039;&amp;#039;greater than or equal to operator&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
This operator will return [[Boolean|true]] if the value on the &amp;#039;&amp;#039;&amp;#039;left&amp;#039;&amp;#039;&amp;#039; is &amp;#039;&amp;#039;&amp;#039;more than or the same as&amp;#039;&amp;#039;&amp;#039; the value on the &amp;#039;&amp;#039;&amp;#039;right&amp;#039;&amp;#039;&amp;#039; of the operator.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
In most languages, the less than or equal to operator is represented by a &amp;lt;code&amp;gt;&amp;gt;=&amp;lt;/code&amp;gt; symbol.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
boolean a = 4 &amp;gt;= 6; // false&lt;br /&gt;
boolean b = 7 &amp;gt;= 7; // true&lt;br /&gt;
boolean c = 6 &amp;gt;= 5; // true&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dylan</name></author>
	</entry>
</feed>