Content deleted Content added
Stevebroshar (talk | contribs) Re-organize: put examples in the examples section and move mostly non-example info from examples to the intro |
Stevebroshar (talk | contribs) →Examples: Use consistent formatting (either both should be lists or neither; I picked both) |
||
Line 43:
{{category see also|Operators (programming)}}
Examples of infix operators include:
* [[Arithmetic]]: such as addition, <code>a+b</code>
* [[Relational operator|relational]]: such as [[Greater-than sign|greater than]], <code>a>b</code>
* [[Mathematical logic|Logic]]: such as <code>a AND b</code> or <code>a&&b</code>
* [[Assignment (computer science)|Assignment]]: such as <code>a=b</code> or <code>a:=b</code>
* [[Record (computer science)|Record]] or [[Object (computer science)|object]] [[Field (computer science)|field]] access: such as <code>a.b</code>
* [[scope resolution operator|Scope resolution]]: such as <code>a::b</code> or <code>a.b</code>
Less common operators include:
|